Skip to content

Commit ba05d72

Browse files
committed
fix(deps): Update actions/setup-go action to v5
1 parent 00ec950 commit ba05d72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/gen-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
sudo rm -rf .generated
2424
2525
- name: Set up Go 1.x
26-
uses: actions/setup-go@v3
26+
uses: actions/setup-go@v5
2727
with:
2828
go-version-file: go.mod
2929

.github/workflows/lint_golang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 10
1515
steps:
1616
- uses: actions/checkout@v3
17-
- uses: actions/setup-go@v4
17+
- uses: actions/setup-go@v5
1818
with:
1919
go-version-file: go.mod
2020
- name: golangci-lint

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Check out code into the Go module directory
2020
uses: actions/checkout@v3
2121
- name: Set up Go 1.x
22-
uses: actions/setup-go@v4
22+
uses: actions/setup-go@v5
2323
with:
2424
go-version-file: go.mod
2525
- run: go mod download

0 commit comments

Comments
 (0)