Skip to content

Commit

Permalink
ci: run smoke-test with the latest stable Go release (#2209)
Browse files Browse the repository at this point in the history
The smoke test asserts that our packages still build and pass their unit
tests when all of the dependencies are upgraded to their latest
compatible versions. Sometimes dependencies can drop support for older
Go versions and will no longer compile if we're running the tests using
the unsupported Go version. This can happen, for example, if we are
doing a patch release for a release which supported an older Go version,
and a new Go version comes out. If a user does what this test does, this
they should expect to sometimes need to upgrade their Go toolchain for
this reason. So let's run the test using the latest toolchain.
  • Loading branch information
nsrip-dd committed Sep 7, 2023
1 parent 8868d37 commit 106b68a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: "1.19"
go-version: "stable"
cache: true
- name: go get -u
run: |
Expand Down

0 comments on commit 106b68a

Please sign in to comment.