diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 69e781f..1009cf1 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -16,7 +16,8 @@ jobs: with: go-version: '1.22.x' - name: golangci-lint - uses: golangci/golangci-lint-action@v5 + - name: golangci-lint + 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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 565cb3b..29a8fef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: @@ -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: diff --git a/go.mod b/go.mod index 755b2d0..854304d 100644 --- a/go.mod +++ b/go.mod @@ -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