Skip to content

Commit

Permalink
github/workflows: add go v1.22 build, bump setup-go and cache
Browse files Browse the repository at this point in the history
  • Loading branch information
julieta-311 committed Apr 8, 2024
1 parent 916fc33 commit 0faaf87
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 @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19', '1.20', '1.21']
go: [ '1.20', '1.21', '1.22']
steps:
- name: Cache go deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashfiles('**/go.sum') }}
Expand All @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
env:
Expand Down

0 comments on commit 0faaf87

Please sign in to comment.