Skip to content

Commit

Permalink
update CI to use latest go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dguerri committed Jun 14, 2024
1 parent c24edd9 commit 9112191
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,21 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
go: ["1.18.x", "1.19.x"]
go: ["1.19.x", "1.20.x", "1.21.x", "1.22.x"]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Go
uses: WillAbides/setup-go-faster@v1.7.0
uses: WillAbides/setup-go-faster@v1.14.0
with:
go-version: ${{ matrix.go }}
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Static code analysis
uses: dominikh/staticcheck-action@v1.2.0
uses: dominikh/staticcheck-action@v1
with:
version: "2022.1.1"
version: "latest"
install-go: false
cache-key: ${{ matrix.go }}
- name: Run Go vet
Expand All @@ -52,9 +52,9 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Setup Go
uses: WillAbides/setup-go-faster@v1.7.0
uses: WillAbides/setup-go-faster@v1.14.0
with:
go-version: "1.19.x"
go-version: "1.22.x"
- name: Checkout
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 9112191

Please sign in to comment.