Skip to content

Commit

Permalink
ci: update ci to Go 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann committed Aug 27, 2024
1 parent b44b12a commit 29321c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
go-version: '1.22.x'
- name: golangci-lint
uses: golangci/golangci-lint-action@v5
uses: golangci/golangci-lint-action@v6
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.57.2
version: v1.60.3
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
unit:
strategy:
matrix:
go: [ "1.21.x", "1.22.x" ]
go: [ "1.22.x", "1.23.x" ]
runs-on: ubuntu-latest
name: Unit tests (Go ${{ matrix.go }})
steps:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:
integration:
strategy:
matrix:
go: [ "1.21.x", "1.22.x" ]
go: [ "1.22.x", "1.23.x" ]
runs-on: ubuntu-latest
name: Integration tests (Go ${{ matrix.go }})
steps:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/quic-go/qpack

go 1.21
go 1.22

require (
github.com/onsi/ginkgo/v2 v2.2.0
Expand Down

0 comments on commit 29321c3

Please sign in to comment.