diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 050f0c18e..01e0b030f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: "1.21" + go-version: "1.22" - uses: actions/checkout@v3 - name: golangci-lint uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # pin@v3.7.0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c5841048..a6b18c79a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,10 +59,10 @@ jobs: # pull requests, only run this step for a single job in the matrix. For # all other workflow triggers (e.g., pushes to a release branch) run # this step for the whole matrix. - if: ${{ github.event_name != 'pull_request' || (matrix.go == '1.21' && matrix.os == 'ubuntu') }} + if: ${{ github.event_name != 'pull_request' || (matrix.go == '1.22' && matrix.os == 'ubuntu') }} timeout-minutes: 15 strategy: matrix: - go: ["1.21", "1.20", "1.19", "1.18"] + go: ["1.22", "1.21", "1.20", "1.19", "1.18"] os: [ubuntu, windows, macos] fail-fast: false