Skip to content

Commit

Permalink
Upgrade lint actions
Browse files Browse the repository at this point in the history
  • Loading branch information
samlown committed Oct 17, 2024
1 parent d193636 commit 808acbb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ jobs:
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
id: go

- name: Lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: v1.59.1
version: v1.59.1
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ jobs:

steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v4
with:
go-version: "1.22.3"
id: go

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Dependencies
env:
GOPROXY: https://proxy.golang.org,direct
run: go mod download

- name: Test
run: go test -tags unit -race ./...
run: go test -tags unit -race ./...

0 comments on commit 808acbb

Please sign in to comment.