From 29321c306c07c15b9a63f0e13dfa79c5e69f6314 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Tue, 27 Aug 2024 17:15:01 +0800 Subject: [PATCH] ci: update ci to Go 1.23 --- .github/workflows/golangci-lint.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 69e781f..25c0d90 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -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 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