Skip to content

Commit f4573f6

Browse files
Bump actions/checkout from 5.0.0 to 6.0.0 (#1363)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8d1d858 commit f4573f6

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/image-builder-from-repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
sudo apt install coreutils p7zip-full qemu-user-static xz-utils
2323
2424
- name: Checkout CustomPiOS
25-
uses: actions/checkout@v5.0.0
25+
uses: actions/checkout@v6.0.0
2626
with:
2727
repository: 'guysoft/CustomPiOS'
2828
ref: '${{ github.event.inputs.tagCustomPiOS }}'

.github/workflows/image-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
sudo apt install coreutils p7zip-full qemu-user-static
3939
4040
- name: Checkout CustomPiOS
41-
uses: actions/checkout@v5.0.0
41+
uses: actions/checkout@v6.0.0
4242
with:
4343
repository: 'guysoft/CustomPiOS'
4444
path: CustomPiOS

.github/workflows/push-master.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
architecture: amd64
4444

4545
steps:
46-
- uses: actions/checkout@v5.0.0
46+
- uses: actions/checkout@v6.0.0
4747
with:
4848
submodules: true
4949

@@ -115,7 +115,7 @@ jobs:
115115
NICE_NAME: x64
116116
steps:
117117
# Checkout
118-
- uses: actions/checkout@v5.0.0
118+
- uses: actions/checkout@v6.0.0
119119
with:
120120
submodules: true
121121

@@ -175,7 +175,7 @@ jobs:
175175
TOOLKIT_DIR: "${{ github.workspace }}\\Toolkit"
176176
steps:
177177
- name: Checkout
178-
uses: actions/checkout@v5.0.0
178+
uses: actions/checkout@v6.0.0
179179
with:
180180
submodules: true
181181

@@ -272,7 +272,7 @@ jobs:
272272

273273
steps:
274274
- name: Checkout repository
275-
uses: actions/checkout@v5.0.0
275+
uses: actions/checkout@v6.0.0
276276
if: env.USE_CODEQL == 'true'
277277
with:
278278
submodules: true
@@ -298,7 +298,7 @@ jobs:
298298

299299
steps:
300300
- name: Checkout repo
301-
uses: actions/checkout@v5.0.0
301+
uses: actions/checkout@v6.0.0
302302
with:
303303
submodules: true
304304

@@ -365,7 +365,7 @@ jobs:
365365
contents: write
366366
steps:
367367
- name: Checkout
368-
uses: actions/checkout@v5.0.0
368+
uses: actions/checkout@v6.0.0
369369

370370
- name: Generate environment variables from version and tag
371371
run: |

.github/workflows/upload-to-github-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
architecture: amd64
4343

4444
steps:
45-
- uses: actions/checkout@v5.0.0
45+
- uses: actions/checkout@v6.0.0
4646
with:
4747
submodules: true
4848

@@ -92,7 +92,7 @@ jobs:
9292
needs: [Linux]
9393

9494
steps:
95-
- uses: actions/checkout@v5.0.0
95+
- uses: actions/checkout@v6.0.0
9696
with:
9797
submodules: false
9898
- name: Download artifacts

0 commit comments

Comments
 (0)