@@ -11,20 +11,20 @@ jobs:
11
11
build :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/setup-go@v3
14
+ - uses : actions/setup-go@v5
15
15
with :
16
16
go-version : oldstable
17
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@v4
18
18
- name : Build
19
19
run : make
20
20
# Run static/code-quality checks
21
21
check :
22
22
runs-on : ubuntu-latest
23
23
steps :
24
- - uses : actions/setup-go@v3
24
+ - uses : actions/setup-go@v5
25
25
with :
26
26
go-version : oldstable
27
- - uses : actions/checkout@v3
27
+ - uses : actions/checkout@v4
28
28
- name : Install revive
29
29
run : go install github.com/mgechev/revive@latest
30
30
- name : Run checks
33
33
runs-on : ubuntu-latest
34
34
if : github.event_name == 'pull_request'
35
35
steps :
36
- - uses : actions/checkout@v3
36
+ - uses : actions/checkout@v4
37
37
with :
38
38
fetch-depth : 0
39
39
ref : ${{ github.event.pull_request.head.sha }}
@@ -44,10 +44,10 @@ jobs:
44
44
test :
45
45
runs-on : ubuntu-latest
46
46
steps :
47
- - uses : actions/setup-go@v3
47
+ - uses : actions/setup-go@v5
48
48
with :
49
49
go-version : oldstable
50
- - uses : actions/checkout@v3
50
+ - uses : actions/checkout@v4
51
51
- name : run the tests
52
52
run : make test
53
53
podmanbuild :
56
56
# image build step, so no need to do it twice.
57
57
if : github.event_name == 'pull_request'
58
58
steps :
59
- - uses : actions/checkout@v3
59
+ - uses : actions/checkout@v4
60
60
- name : Install fuse-overlayfs
61
61
run : sudo apt-get -y install fuse-overlayfs
62
62
- name : Setup podman config
84
84
# image build step, so no need to do it twice.
85
85
if : github.event_name == 'pull_request'
86
86
steps :
87
- - uses : actions/checkout@v3
87
+ - uses : actions/checkout@v4
88
88
- name : build container image
89
89
# note: forcing use of podman here since we are
90
90
# using podman explicitly for the push job
97
97
CONTAINER_CMD : docker
98
98
PR_NUM : ${{ github.event.pull_request.number }}
99
99
steps :
100
- - uses : actions/checkout@v3
101
- - uses : actions/setup-go@v3
100
+ - uses : actions/checkout@v4
101
+ - uses : actions/setup-go@v5
102
102
with :
103
103
go-version : oldstable
104
104
- name : Install k3d
@@ -152,7 +152,7 @@ jobs:
152
152
runs-on : ubuntu-latest
153
153
if : github.event_name == 'push'
154
154
steps :
155
- - uses : actions/checkout@v3
155
+ - uses : actions/checkout@v4
156
156
- name : log in to quay.io
157
157
# using docker for now, since podman has an issue with space
158
158
# consumption: image build fails with no space left on device...
0 commit comments