Skip to content

Commit

Permalink
test: prevent upgrade of Go version (#342)
Browse files Browse the repository at this point in the history
We deliberately test against a matrix of Go versions, but Go toolchain changes mean that the version of Go is being upgraded on the fly, so for example the Go 1.21 test actually uses Go 1.23. This is confusing and not the desired behavior.
  • Loading branch information
blgm authored Dec 11, 2024
1 parent b689c4c commit 8bcf18e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
go-version: ${{ matrix.version }}
- uses: actions/checkout@v4
- run: make test
- run: GOTOOLCHAIN=local make test
call-dependabot-pr-workflow:
needs: test
if: ${{ success() && github.actor == 'dependabot[bot]' }}
Expand Down

0 comments on commit 8bcf18e

Please sign in to comment.