2020 keyring :
2121 runs-on : ubuntu-24.04
2222 steps :
23- - uses : actions/checkout@v6
23+ - uses : actions/checkout@v7
2424 - name : check runc.keyring
2525 run : make validate-keyring
2626
3232 checks : write # to allow the action to annotate code in the PR.
3333 runs-on : ubuntu-24.04
3434 steps :
35- - uses : actions/checkout@v6
35+ - uses : actions/checkout@v7
3636 with :
3737 fetch-depth : 2
3838 - uses : actions/setup-go@v6
5555 modernize :
5656 runs-on : ubuntu-24.04
5757 steps :
58- - uses : actions/checkout@v6
58+ - uses : actions/checkout@v7
5959 with :
6060 fetch-depth : 2
6161 - uses : actions/setup-go@v6
8080 # Don't ignore C warnings. Note that the output of "go env CGO_CFLAGS" by default is "-g -O2", so we keep them.
8181 CGO_CFLAGS : -g -O2 -Werror
8282 steps :
83- - uses : actions/checkout@v6
83+ - uses : actions/checkout@v7
8484 - name : install go
8585 uses : actions/setup-go@v6
8686 with :
@@ -100,7 +100,7 @@ jobs:
100100 codespell :
101101 runs-on : ubuntu-24.04
102102 steps :
103- - uses : actions/checkout@v6
103+ - uses : actions/checkout@v7
104104 - name : install deps
105105 # Version of codespell bundled with Ubuntu is way old, so use pip.
106106 run : pip install --break-system-packages codespell==v2.4.1
@@ -110,14 +110,14 @@ jobs:
110110 shfmt :
111111 runs-on : ubuntu-24.04
112112 steps :
113- - uses : actions/checkout@v6
113+ - uses : actions/checkout@v7
114114 - name : shfmt
115115 run : make shfmt
116116
117117 shellcheck :
118118 runs-on : ubuntu-24.04
119119 steps :
120- - uses : actions/checkout@v6
120+ - uses : actions/checkout@v7
121121 - name : install shellcheck
122122 env :
123123 VERSION : v0.11.0
@@ -141,14 +141,14 @@ jobs:
141141 space-at-eol :
142142 runs-on : ubuntu-24.04
143143 steps :
144- - uses : actions/checkout@v6
144+ - uses : actions/checkout@v7
145145 - run : rm -fr vendor
146146 - run : if git -P grep -I -n '\s$'; then echo "^^^ extra whitespace at EOL, please fix"; exit 1; fi
147147
148148 deps :
149149 runs-on : ubuntu-24.04
150150 steps :
151- - uses : actions/checkout@v6
151+ - uses : actions/checkout@v7
152152 - name : install go
153153 uses : actions/setup-go@v6
154154 with :
@@ -193,7 +193,7 @@ jobs:
193193 runs-on : ubuntu-24.04
194194 steps :
195195 - name : checkout
196- uses : actions/checkout@v6
196+ uses : actions/checkout@v7
197197 - name : install deps
198198 run : |
199199 sudo apt -qq update
@@ -206,7 +206,7 @@ jobs:
206206 check-go :
207207 runs-on : ubuntu-24.04
208208 steps :
209- - uses : actions/checkout@v6
209+ - uses : actions/checkout@v7
210210 - name : check Go version
211211 run : |
212212 GO_VER=$(awk -F= '/^ARG\s+GO_VERSION=/ {print $2; quit}' Dockerfile)
@@ -221,7 +221,7 @@ jobs:
221221 runs-on : ubuntu-24.04
222222 steps :
223223 - name : checkout
224- uses : actions/checkout@v6
224+ uses : actions/checkout@v7
225225
226226 - name : check CHANGELOG.md
227227 run : make verify-changelog
@@ -249,7 +249,7 @@ jobs:
249249 get-images :
250250 runs-on : ubuntu-24.04
251251 steps :
252- - uses : actions/checkout@v6
252+ - uses : actions/checkout@v7
253253 - name : install bashbrew
254254 env :
255255 BASEURL : https://github.com/docker-library/bashbrew/releases/download
@@ -273,7 +273,7 @@ jobs:
273273 runs-on : ubuntu-24.04
274274 steps :
275275 - name : checkout
276- uses : actions/checkout@v6
276+ uses : actions/checkout@v7
277277
278278 - name : install runc and conmon deps
279279 # XXX maybe switch to conmon/hack/github-actions-setup if the burden
@@ -303,7 +303,7 @@ jobs:
303303 file-install : false
304304
305305 - name : checkout conmon
306- uses : actions/checkout@v6
306+ uses : actions/checkout@v7
307307 with :
308308 repository : containers/conmon
309309 path : conmon
0 commit comments