Skip to content

Commit

Permalink
Create dependabot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lijy91 committed Sep 13, 2024
1 parent 1a725b4 commit a3476e1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
groups:
github-actions:
patterns:
- "*"
- package-ecosystem: pub
directory: /
schedule:
interval: weekly
groups:
root-pub:
patterns:
- "*"
2 changes: 1 addition & 1 deletion lib/src/minio_helpers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ void validate(MinioResponse response, {int? expect}) {
error = Error(response.reasonPhrase, null, response.reasonPhrase, null);
} else {
// check valid xml
if (response.body.startWith('<?xml')) {
if (response.body.startsWith('<?xml')) {
final body = xml.XmlDocument.parse(response.body);
error = Error.fromXml(body.rootElement);
} else {
Expand Down

0 comments on commit a3476e1

Please sign in to comment.