9
9
# Execute the checks inside the container instead the VM.
10
10
container : golangci/golangci-lint:v1.64.8-alpine
11
11
steps :
12
- - uses : actions/checkout@v4
12
+ - uses : actions/checkout@v5
13
13
- run : |
14
14
# We need this go flag because it started to error after golangci-lint is using Go 1.21.
15
15
# TODO(slok): Remove it on next (>1.54.1) golangci-lint upgrade to check if this problem has gone.
20
20
name : Unit test
21
21
runs-on : ubuntu-latest
22
22
steps :
23
- - uses : actions/checkout@v4
23
+ - uses : actions/checkout@v5
24
24
- uses : actions/setup-go@v5
25
25
with :
26
26
go-version-file : go.mod
35
35
name : Helm chart test
36
36
runs-on : ubuntu-latest
37
37
steps :
38
- - uses : actions/checkout@v4
38
+ - uses : actions/checkout@v5
39
39
- uses : actions/setup-go@v5
40
40
with :
41
41
go-version-file : go.mod
52
52
name : Integration test CLI
53
53
runs-on : ubuntu-latest
54
54
steps :
55
- - uses : actions/checkout@v4
55
+ - uses : actions/checkout@v5
56
56
- uses : actions/setup-go@v5
57
57
with :
58
58
go-version-file : go.mod
74
74
matrix :
75
75
kubernetes : [1.30.13, 1.31.9, 1.32.5, 1.33.1]
76
76
steps :
77
- - uses : actions/checkout@v4
77
+ - uses : actions/checkout@v5
78
78
- uses : actions/setup-go@v5
79
79
with :
80
80
go-version-file : go.mod
@@ -124,7 +124,7 @@ jobs:
124
124
name : Release images
125
125
runs-on : ubuntu-latest
126
126
steps :
127
- - uses : actions/checkout@v4
127
+ - uses : actions/checkout@v5
128
128
- name : Docker login
129
129
run : docker login ghcr.io -u ${{ github.actor }} -p "${{ secrets.GITHUB_TOKEN }}"
130
130
- name : Build and publish docker images
@@ -147,7 +147,7 @@ jobs:
147
147
runs-on : ubuntu-latest
148
148
steps :
149
149
- run : echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var.
150
- - uses : actions/checkout@v4
150
+ - uses : actions/checkout@v5
151
151
- name : Docker login
152
152
run : docker login ghcr.io -u ${{ github.actor }} -p "${{ secrets.GITHUB_TOKEN }}"
153
153
- name : Build and publish docker images
@@ -168,7 +168,7 @@ jobs:
168
168
runs-on : ubuntu-latest
169
169
steps :
170
170
- run : echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var.
171
- - uses : actions/checkout@v4
171
+ - uses : actions/checkout@v5
172
172
- name : Build binaries
173
173
run : |
174
174
mkdir -p ./bin
0 commit comments