1717 keyring :
1818 runs-on : ubuntu-24.04
1919 steps :
20- - uses : actions/checkout@v5
20+ - uses : actions/checkout@v6
2121 - name : check runc.keyring
2222 run : make validate-keyring
2323
2929 checks : write # to allow the action to annotate code in the PR.
3030 runs-on : ubuntu-24.04
3131 steps :
32- - uses : actions/checkout@v5
32+ - uses : actions/checkout@v6
3333 with :
3434 fetch-depth : 2
3535 - uses : actions/setup-go@v6
5252 modernize :
5353 runs-on : ubuntu-24.04
5454 steps :
55- - uses : actions/checkout@v5
55+ - uses : actions/checkout@v6
5656 with :
5757 fetch-depth : 2
5858 - uses : actions/setup-go@v6
7777 # Don't ignore C warnings. Note that the output of "go env CGO_CFLAGS" by default is "-g -O2", so we keep them.
7878 CGO_CFLAGS : -g -O2 -Werror
7979 steps :
80- - uses : actions/checkout@v5
80+ - uses : actions/checkout@v6
8181 - name : install go
8282 uses : actions/setup-go@v6
8383 with :
9494 codespell :
9595 runs-on : ubuntu-24.04
9696 steps :
97- - uses : actions/checkout@v5
97+ - uses : actions/checkout@v6
9898 - name : install deps
9999 # Version of codespell bundled with Ubuntu is way old, so use pip.
100100 run : pip install --break-system-packages codespell==v2.4.1
@@ -104,14 +104,14 @@ jobs:
104104 shfmt :
105105 runs-on : ubuntu-24.04
106106 steps :
107- - uses : actions/checkout@v5
107+ - uses : actions/checkout@v6
108108 - name : shfmt
109109 run : make shfmt
110110
111111 shellcheck :
112112 runs-on : ubuntu-24.04
113113 steps :
114- - uses : actions/checkout@v5
114+ - uses : actions/checkout@v6
115115 - name : install shellcheck
116116 env :
117117 VERSION : v0.10.0
@@ -135,14 +135,14 @@ jobs:
135135 space-at-eol :
136136 runs-on : ubuntu-24.04
137137 steps :
138- - uses : actions/checkout@v5
138+ - uses : actions/checkout@v6
139139 - run : rm -fr vendor
140140 - run : if git -P grep -I -n '\s$'; then echo "^^^ extra whitespace at EOL, please fix"; exit 1; fi
141141
142142 deps :
143143 runs-on : ubuntu-24.04
144144 steps :
145- - uses : actions/checkout@v5
145+ - uses : actions/checkout@v6
146146 - name : install go
147147 uses : actions/setup-go@v6
148148 with :
@@ -187,7 +187,7 @@ jobs:
187187 runs-on : ubuntu-24.04
188188 steps :
189189 - name : checkout
190- uses : actions/checkout@v5
190+ uses : actions/checkout@v6
191191 - name : install deps
192192 run : |
193193 sudo apt -qq update
@@ -200,7 +200,7 @@ jobs:
200200 check-go :
201201 runs-on : ubuntu-24.04
202202 steps :
203- - uses : actions/checkout@v5
203+ - uses : actions/checkout@v6
204204 - name : check Go version
205205 run : |
206206 GO_VER=$(awk -F= '/^ARG\s+GO_VERSION=/ {print $2; quit}' Dockerfile)
@@ -215,7 +215,7 @@ jobs:
215215 runs-on : ubuntu-24.04
216216 steps :
217217 - name : checkout
218- uses : actions/checkout@v5
218+ uses : actions/checkout@v6
219219
220220 - name : check CHANGELOG.md
221221 run : make verify-changelog
@@ -243,7 +243,7 @@ jobs:
243243 get-images :
244244 runs-on : ubuntu-24.04
245245 steps :
246- - uses : actions/checkout@v5
246+ - uses : actions/checkout@v6
247247 - name : install bashbrew
248248 env :
249249 BASEURL : https://github.com/docker-library/bashbrew/releases/download
0 commit comments