From 607add2887f7fbdb65da61343078576b291946cf Mon Sep 17 00:00:00 2001 From: John Boyes Date: Thu, 3 Apr 2025 01:00:23 +0000 Subject: [PATCH] Use the Go minor version for Dependabot updates Prior to this commit Dependabot would create a pull request for every new patch version of Go. In `github_tag_and_release.yml` we only specify the minor version of Go though, so it is better to have Dependabot only create pull requests when there is a new minor version. --- .github/workflows/dependabot_hack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot_hack.yml b/.github/workflows/dependabot_hack.yml index 86e8500..a476cf6 100644 --- a/.github/workflows/dependabot_hack.yml +++ b/.github/workflows/dependabot_hack.yml @@ -27,7 +27,7 @@ jobs: - uses: koalaman/shellcheck@v0.10.0 # update the version in `github_tag_and_release.yml` manually, too - - uses: golang/go@go1.24.1 + - uses: golang/go@go1.24 # update the variant version in the devcontainer.json manually, too # (see ../DEPENDENCIES.md#devcontainer-base-image-version for more info )