Skip to content

Commit

Permalink
ci: update github actions to latest versions
Browse files Browse the repository at this point in the history
- Upgrade actions/checkout to v4
- Upgrade actions/setup-go to v5
- Update go-versions to be `1.21` and `1.22` (two most recent versions)
  • Loading branch information
cmackenzie1 committed Jun 10, 2024
1 parent ce7c84a commit 4a6e969
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19', '1.20' ]
go: [ '1.21', '1.22' ]
arch: [ 'amd64', '386' ]
name: Go ${{ matrix.go }} GOARCH=${{ matrix.arch }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v1
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Set GOARCH
Expand Down

0 comments on commit 4a6e969

Please sign in to comment.