From 937a0f783307d9e3ad19b655b4103768b413c682 Mon Sep 17 00:00:00 2001 From: cpanato Date: Mon, 7 Oct 2024 12:30:54 +0200 Subject: [PATCH 1/2] add retry when downloading chainctl --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index ebb6349..3fe8667 100644 --- a/action.yaml +++ b/action.yaml @@ -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 From f29d7e4a117b861e6d11be636fbd680142ec7246 Mon Sep 17 00:00:00 2001 From: cpanato Date: Mon, 7 Oct 2024 12:31:13 +0200 Subject: [PATCH 2/2] add dependabot config --- .github/dependabot.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..57bbb38 --- /dev/null +++ b/.github/dependabot.yaml @@ -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"