Skip to content

Commit ce5330c

Browse files
committed
Update action
1 parent 6303ef9 commit ce5330c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/go.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: Set up Go
19-
uses: actions/setup-go@v4
19+
uses: actions/setup-go@v5
2020
with:
2121
go-version-file: 'go.mod'
22-
22+
2323
- name: Format
2424
run: |
2525
go install mvdan.cc/gofumpt@latest
2626
gofumpt -l -w .
2727
git diff --exit-code
28-
28+
2929
- name: golangci-lint
30-
uses: golangci/golangci-lint-action@v3
30+
uses: golangci/golangci-lint-action@v6
3131

3232
- name: Test
3333
run: go test -v ./...

0 commit comments

Comments
 (0)