Skip to content

Commit

Permalink
chore: update ci versions
Browse files Browse the repository at this point in the history
Update go, golangci-lint and action versions.
  • Loading branch information
stevenh committed Apr 13, 2024
1 parent b755419 commit 75417bf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
go-test-lint:
strategy:
matrix:
go: [1.19, 1.18]
golangcli: [v1.53.3]
go: [1.21, 1.22]
golangcli: [v1.57.2]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
Expand All @@ -30,10 +30,10 @@ jobs:
git --no-pager diff && [[ 0 -eq $(git status --porcelain | wc -l) ]]
- name: Go Lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
version: ${{ matrix.golangcli }}
args: "--out-${NO_FUTURE}format colored-line-number"
args: --out-format=colored-line-number
skip-pkg-cache: true
skip-build-cache: true

Expand Down

0 comments on commit 75417bf

Please sign in to comment.