Skip to content

Commit

Permalink
ci: bump Go and github actions
Browse files Browse the repository at this point in the history
Go 1.23 is released, making Go 1.21 (and older version) unsupported.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
  • Loading branch information
kolyshkin committed Aug 15, 2024
1 parent d4cfd13 commit 31b3571
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ on:
jobs:

lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: 1.20.x
- uses: actions/checkout@v3
- uses: golangci/golangci-lint-action@v3
go-version: 1.x # latest
- uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v6
with:
version: v1.51.2
version: v1.60

commit:
runs-on: ubuntu-22.04
Expand All @@ -44,14 +44,14 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.19.x, 1.20.x]
go-version: [1.22.x, 1.23.x]
race: ["-race", ""]

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install go ${{ matrix.go-version }}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: build
Expand Down

0 comments on commit 31b3571

Please sign in to comment.