diff --git a/.github/actions/automatic-updates/action.yml b/.github/actions/automatic-updates/action.yml index a153681244..36117103f7 100644 --- a/.github/actions/automatic-updates/action.yml +++ b/.github/actions/automatic-updates/action.yml @@ -76,7 +76,7 @@ runs: go tool cover -func=coverage.mod.out -o=coverage.mod.out grep -o -P '(?<=\(statements\))(.+)(?=%)' coverage.mod.out | xargs > coverage touch badge.out - wget https://gobinaries.com/github.com/AlexBeauchemin/gobadge@v0.2.0 -O gobadge + curl -sf https://gobinaries.com/github.com/AlexBeauchemin/gobadge@v0.2.0 | PREFIX=. sh chmod +x gobadge ./gobadge -filename=coverage -target=badge.out @@ -97,7 +97,7 @@ runs: run: | git config --local user.email "$CI_EMAIL" git config --local user.name "$CI_USER" - git add README.adoc && git commit -m 'chore: nightly automatic updates' || echo "No nightly automatic updates changes to commit" + git add README.adoc CHANGELOG.md && git commit -m 'chore: nightly automatic updates' || echo "No nightly automatic updates changes to commit" git push "https://$CI_USER:$CI_TOKEN@github.com/$GITHUB_REPOSITORY.git" HEAD:${{ inputs.branch-ref }} || echo "No nightly automatic updates changes to push" # Give it a rest to avoid hitting Github API rate limit