Skip to content

Commit

Permalink
CI: adjust the verify version since Go 1.22 is released (#4408)
Browse files Browse the repository at this point in the history
  • Loading branch information
SandyXSD authored Feb 18, 2024
1 parent 1c50a0e commit 3c69a0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.51.0
version: v1.54

- name: Setup upterm session
if: ${{ failure() && github.event_name == 'workflow_dispatch' && github.event.inputs.debug == 'true' }}
if: failure() && (github.event.inputs.debug == 'true' || github.run_attempt != 1)
# if: failure()
timeout-minutes: 60
uses: lhotari/action-upterm@v1
build:
strategy:
fail-fast: false
matrix:
version: ['1.20', '1.21', '>=1.22.0-rc.1']
version: ['1.20', '1.21', '1.22']
runs-on: ubuntu-20.04
steps:
- name: Check out code
Expand Down

0 comments on commit 3c69a0d

Please sign in to comment.