Skip to content

Commit 14aa44c

Browse files
committed
fixes github action
Signed-off-by: Min Jin <[email protected]>
1 parent e763c8d commit 14aa44c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/go.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,17 @@ jobs:
1414
steps:
1515

1616
- name: Set up Go 1.x
17-
uses: actions/setup-go@v2
17+
uses: actions/setup-go@v5
1818
with:
19-
go-version: 1.19.3
19+
go-version: 1.23.1
2020
id: go
2121
- name: Check out code into the Go module directory
2222
uses: actions/checkout@v2
2323
- name: golangci-lint
24-
uses: golangci/golangci-lint-action@v3
24+
uses: golangci/golangci-lint-action@v6
2525
with:
26-
version: v1.46
26+
version: v1.63.4
27+
args: "--disable-all --no-config -E gofmt"
2728
- run: go vet ./pkg/...
2829
- run: go vet ./sample/...
2930
- run: go vet ./tools/...

0 commit comments

Comments
 (0)