Skip to content

Commit

Permalink
Use latest Go version for ARM64 and VM tests in CI
Browse files Browse the repository at this point in the history
The test-on-arm64 and vm-test jobs in CI are using the previous stable
Go version (currently 1.21) instead of the latest stable version
(currently 1.22). The previous stable Go version is already covered by
the test-on-prev-go job, so switch the others to use the latest.

Signed-off-by: Tobias Klauser <[email protected]>
  • Loading branch information
tklauser authored and lmb committed Apr 16, 2024
1 parent 6dd097a commit 7719d2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '${{ env.prev_go_version }}'
go-version: '${{ env.go_version }}'

- run: go install gotest.tools/[email protected]

Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '${{ env.prev_go_version }}'
go-version: '${{ env.go_version }}'

- run: go install gotest.tools/[email protected]
- run: sudo pip3 install https://github.com/amluto/virtme/archive/beb85146cd91de37ae455eccb6ab67c393e6e290.zip
Expand Down

0 comments on commit 7719d2f

Please sign in to comment.