Skip to content

Commit

Permalink
.github: use latest Go versions
Browse files Browse the repository at this point in the history
Also update the runners to their latest versions.
  • Loading branch information
kevinburkesegment committed Oct 16, 2023
1 parent 882382d commit 443b272
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
strategy:
matrix:
go_version:
- "1.19"
- "1.20"
- "1.21"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v3.2.0
uses: actions/setup-go@v4.1.0
with:
go-version: ${{ matrix.go_version }}
- run: ./.ci.gogenerate.sh
Expand All @@ -28,10 +28,11 @@ jobs:
- "1.18"
- "1.19"
- "1.20"
- "1.21"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v3.2.0
uses: actions/setup-go@v4.1.0
with:
go-version: ${{ matrix.go_version }}
- run: go test -v -race ./...

0 comments on commit 443b272

Please sign in to comment.