Skip to content

Commit

Permalink
actions: update to go 1.22/1.23
Browse files Browse the repository at this point in the history
Also, bump actions/setup-go and actions/checkout to the latest
available.
  • Loading branch information
dfinkel committed Dec 6, 2024
1 parent 368da16 commit 9918cc8
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 @@ -8,17 +8,17 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
goversion: [1.17, 1.18, 1.19]
goversion: ['1.22', '1.23']
steps:

- name: Set up Go ${{matrix.goversion}} on ${{matrix.os}}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{matrix.goversion}}
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: gofmt
run: |
Expand Down

0 comments on commit 9918cc8

Please sign in to comment.