Skip to content

Commit

Permalink
add retry when trying to download chainctl (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpanato authored Oct 7, 2024
1 parent f52718d commit 6f403e1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
groups:
actions:
update-types:
- "minor"
- "patch"
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ runs:
fi
echo "Downloading chainctl from ${url}"
curl -o ./${out} -fsL "${url}"
curl -o ./${out} -fsL --retry 5 --retry-delay 1 "${url}"
chmod +x ./${out}
echo "$(pwd)" >> $GITHUB_PATH
Expand Down

0 comments on commit 6f403e1

Please sign in to comment.