diff --git a/.github/workflows/fuzz.yaml b/.github/workflows/fuzz.yaml index 54b45b9..31bd5eb 100644 --- a/.github/workflows/fuzz.yaml +++ b/.github/workflows/fuzz.yaml @@ -20,7 +20,7 @@ jobs: # warning is presented on each run. Disabling the Go cache and caching # the go-build cache separately for fuzzing. cache: false - go-version: "1.22" + go-version: "1.23" # The cache path may be different on different runners. GitHub may change # this in the future. So, we dynamically fetch it. - name: Get Go Cache Paths diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index d848979..2623ad4 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -15,8 +15,8 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" - name: golangci-lint uses: golangci/golangci-lint-action@v4 with: - version: v1.56 + version: v1.60 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 79ee28d..47ec534 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [1.20.x, 1.21.x, 1.22.x] + go-version: [1.21.x, 1.22.x, 1.23.x] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: