Skip to content

Commit

Permalink
ci: update Go to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
tklauser committed Nov 7, 2023
1 parent 9e53993 commit 439a878
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: '1.19'
go-version: '1.21'

- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build-and-test:
strategy:
matrix:
go-version: ['1.18', '1.19', '1.20']
go-version: ['1.19', '1.20', '1.21']
os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, macos-13]
runs-on: ${{ matrix.os }}

Expand All @@ -26,11 +26,11 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11

- name: Check formatting
if: ${{ matrix.go-version == '1.20' && matrix.os == 'ubuntu-22.04' }}
if: ${{ matrix.go-version == '1.21' && matrix.os == 'ubuntu-22.04' }}
run: diff -u <(echo -n) <(gofmt -d .)

- name: Check Go modules
if: ${{ matrix.go-version == '1.20' && matrix.os == 'ubuntu-22.04' }}
if: ${{ matrix.go-version == '1.21' && matrix.os == 'ubuntu-22.04' }}
run: |
go mod tidy
git diff --exit-code
Expand Down

0 comments on commit 439a878

Please sign in to comment.