Skip to content

Commit 37c6f6d

Browse files
authored
Merge pull request #4850 from opencontainers/dependabot/github_actions/actions/checkout-5
build(deps): bump actions/checkout from 4 to 5
2 parents 6b08448 + cfb22c9 commit 37c6f6d

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
steps:
5151
- name: checkout
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353

5454
- name: Show host info
5555
run: |
@@ -159,7 +159,7 @@ jobs:
159159
steps:
160160

161161
- name: checkout
162-
uses: actions/checkout@v4
162+
uses: actions/checkout@v5
163163

164164
- name: install deps
165165
run: |
@@ -183,7 +183,7 @@ jobs:
183183
timeout-minutes: 30
184184
runs-on: ubuntu-24.04
185185
steps:
186-
- uses: actions/checkout@v4
186+
- uses: actions/checkout@v5
187187

188188
- uses: lima-vm/lima-actions/setup@v1
189189
id: lima-actions-setup

.github/workflows/validate.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
keyring:
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: check runc.keyring
2222
run: make validate-keyring
2323

@@ -29,7 +29,7 @@ jobs:
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@v4
32+
- uses: actions/checkout@v5
3333
with:
3434
fetch-depth: 2
3535
- uses: actions/setup-go@v5
@@ -51,7 +51,7 @@ jobs:
5151
go-fix:
5252
runs-on: ubuntu-24.04
5353
steps:
54-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v5
5555
with:
5656
fetch-depth: 2
5757
- uses: actions/setup-go@v5
@@ -72,7 +72,7 @@ jobs:
7272
# Don't ignore C warnings. Note that the output of "go env CGO_CFLAGS" by default is "-g -O2", so we keep them.
7373
CGO_CFLAGS: -g -O2 -Werror
7474
steps:
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v5
7676
- name: install go
7777
uses: actions/setup-go@v5
7878
with:
@@ -89,7 +89,7 @@ jobs:
8989
codespell:
9090
runs-on: ubuntu-24.04
9191
steps:
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v5
9393
- name: install deps
9494
# Version of codespell bundled with Ubuntu is way old, so use pip.
9595
run: pip install --break-system-packages codespell==v2.4.1
@@ -99,14 +99,14 @@ jobs:
9999
shfmt:
100100
runs-on: ubuntu-24.04
101101
steps:
102-
- uses: actions/checkout@v4
102+
- uses: actions/checkout@v5
103103
- name: shfmt
104104
run: make shfmt
105105

106106
shellcheck:
107107
runs-on: ubuntu-24.04
108108
steps:
109-
- uses: actions/checkout@v4
109+
- uses: actions/checkout@v5
110110
- name: install shellcheck
111111
env:
112112
VERSION: v0.10.0
@@ -130,14 +130,14 @@ jobs:
130130
space-at-eol:
131131
runs-on: ubuntu-24.04
132132
steps:
133-
- uses: actions/checkout@v4
133+
- uses: actions/checkout@v5
134134
- run: rm -fr vendor
135135
- run: if git -P grep -I -n '\s$'; then echo "^^^ extra whitespace at EOL, please fix"; exit 1; fi
136136

137137
deps:
138138
runs-on: ubuntu-24.04
139139
steps:
140-
- uses: actions/checkout@v4
140+
- uses: actions/checkout@v5
141141
- name: install go
142142
uses: actions/setup-go@v5
143143
with:
@@ -182,7 +182,7 @@ jobs:
182182
runs-on: ubuntu-24.04
183183
steps:
184184
- name: checkout
185-
uses: actions/checkout@v4
185+
uses: actions/checkout@v5
186186
with:
187187
fetch-depth: 0
188188
- name: install deps
@@ -200,7 +200,7 @@ jobs:
200200
runs-on: ubuntu-24.04
201201
steps:
202202
- name: checkout
203-
uses: actions/checkout@v4
203+
uses: actions/checkout@v5
204204
with:
205205
fetch-depth: 0
206206

@@ -230,7 +230,7 @@ jobs:
230230
get-images:
231231
runs-on: ubuntu-24.04
232232
steps:
233-
- uses: actions/checkout@v4
233+
- uses: actions/checkout@v5
234234
with:
235235
fetch-depth: 0
236236
- name: install bashbrew

0 commit comments

Comments
 (0)