Skip to content

Commit 9386a54

Browse files
committed
Update CI workflows: add golangci-lint installation and upgrade checkout action to v4
1 parent 8f54633 commit 9386a54

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
with:
3838
go-version: "^1.24.0"
3939

40+
- name: "Install extra tools"
41+
run: |
42+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin
43+
4044
- name: "Check code & lint"
4145
run: |
4246
go get ./...

.github/workflows/release-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

2323
- name: "Run all image builds"
2424
run: |

0 commit comments

Comments
 (0)