Skip to content

Commit 642cb79

Browse files
CI: Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 52341d2 commit 642cb79

14 files changed

+26
-26
lines changed

.github/workflows/formal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
ref: ${{ github.event.pull_request.head.sha }}
1717
fetch-depth: 0

.github/workflows/issue-labeller.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout main
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
with:
4848
fetch-depth: 0
4949
show-progress: false
@@ -78,7 +78,7 @@ jobs:
7878
echo "Detected Release $release"
7979
8080
- name: Checkout Bug Release
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v5
8282
with:
8383
fetch-depth: 0
8484
show-progress: false

.github/workflows/kernel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
sparse-checkout: |
2929
include

.github/workflows/label-kernel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Parse label
2121
id: parse_label

.github/workflows/multi-arch-test-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
runtime_test: true
5858

5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v5
6161
with:
6262
fetch-depth: 0
6363

@@ -222,7 +222,7 @@ jobs:
222222
223223
- name: Checkout
224224
if: ${{ matrix.runtime_test && fromJSON(env.HAVE_PKGS) }}
225-
uses: actions/checkout@v4
225+
uses: actions/checkout@v5
226226
with:
227227
repository: openwrt/actions-shared-workflows
228228
path: dockerfiles_feeds

.github/workflows/push-containers.yml

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

6666
steps:
6767
- name: Checkout
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v5
6969
with:
7070
repository: openwrt/actions-shared-workflows
7171
sparse-checkout: .github/dockerfiles/Dockerfile.tools
@@ -103,7 +103,7 @@ jobs:
103103

104104
steps:
105105
- name: Checkout
106-
uses: actions/checkout@v4
106+
uses: actions/checkout@v5
107107

108108
- name: Set targets
109109
id: find_targets
@@ -164,7 +164,7 @@ jobs:
164164

165165
steps:
166166
- name: Checkout
167-
uses: actions/checkout@v4
167+
uses: actions/checkout@v5
168168
with:
169169
repository: openwrt/actions-shared-workflows
170170
sparse-checkout: .github/dockerfiles/Dockerfile.toolchain

.github/workflows/reusable_build-tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
path: openwrt
2323

.github/workflows/reusable_build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787

8888
steps:
8989
- name: Checkout
90-
uses: actions/checkout@v4
90+
uses: actions/checkout@v5
9191

9292
- name: Set lower case owner name
9393
id: lower_owner
@@ -180,7 +180,7 @@ jobs:
180180

181181
steps:
182182
- name: Checkout master directory
183-
uses: actions/checkout@v4
183+
uses: actions/checkout@v5
184184
with:
185185
path: openwrt
186186

@@ -281,34 +281,34 @@ jobs:
281281

282282
steps:
283283
- name: Checkout master directory
284-
uses: actions/checkout@v4
284+
uses: actions/checkout@v5
285285
with:
286286
path: openwrt
287287

288288
- name: Checkout packages feed
289289
if: inputs.include_feeds == true
290-
uses: actions/checkout@v4
290+
uses: actions/checkout@v5
291291
with:
292292
repository: openwrt/packages
293293
path: openwrt/feeds/packages
294294

295295
- name: Checkout luci feed
296296
if: inputs.include_feeds == true
297-
uses: actions/checkout@v4
297+
uses: actions/checkout@v5
298298
with:
299299
repository: openwrt/luci
300300
path: openwrt/feeds/luci
301301

302302
- name: Checkout routing feed
303303
if: inputs.include_feeds == true
304-
uses: actions/checkout@v4
304+
uses: actions/checkout@v5
305305
with:
306306
repository: openwrt/routing
307307
path: openwrt/feeds/routing
308308

309309
- name: Checkout telephony feed
310310
if: inputs.include_feeds == true
311-
uses: actions/checkout@v4
311+
uses: actions/checkout@v5
312312
with:
313313
repository: openwrt/telephony
314314
path: openwrt/feeds/telephony
@@ -435,7 +435,7 @@ jobs:
435435
- name: Checkout OpenWrt keyring
436436
if: inputs.build_toolchain == false && ((steps.parse-toolchain.outputs.toolchain-type != 'internal' && steps.parse-toolchain.outputs.toolchain-type != 'external_container') ||
437437
steps.parse-prebuilt-llvm.outputs.llvm-type == 'external')
438-
uses: actions/checkout@v4
438+
uses: actions/checkout@v5
439439
with:
440440
repository: openwrt/keyring
441441
path: keyring

.github/workflows/reusable_check-kernel-patches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
steps:
8282
- name: Checkout master directory
83-
uses: actions/checkout@v4
83+
uses: actions/checkout@v5
8484
with:
8585
path: openwrt
8686

.github/workflows/reusable_check-tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
steps:
6767
- name: Checkout
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v5
6969
with:
7070
path: openwrt
7171

0 commit comments

Comments
 (0)