Skip to content

Commit edb6d9a

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 27c8d6d commit edb6d9a

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
outputs:
4141
version: ${{ steps.version.outputs.version }}
4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
with:
4545
ref: "${{ github.event.pull_request.head.sha }}"
4646
- run: |

.github/workflows/build_and_test_arm.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
FLAVOR: ${{ inputs.flavor }}
2626
ARCH: aarch64
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
- run: |
3030
git fetch --prune --unshallow
3131
- name: Cached ISO
@@ -65,7 +65,7 @@ jobs:
6565
FLAVOR: ${{ inputs.flavor }}
6666
ARCH: aarch64
6767
steps:
68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969
- run: |
7070
git fetch --prune --unshallow
7171
- name: Checks cached Disk
@@ -117,7 +117,7 @@ jobs:
117117
- test-smoke
118118
fail-fast: false
119119
steps:
120-
- uses: actions/checkout@v5
120+
- uses: actions/checkout@v6
121121
- name: Install Go
122122
uses: actions/setup-go@v6
123123
with:
@@ -168,7 +168,7 @@ jobs:
168168
ARCH: aarch64
169169
COS_TIMEOUT: 1600
170170
steps:
171-
- uses: actions/checkout@v5
171+
- uses: actions/checkout@v6
172172
- name: Install Go
173173
uses: actions/setup-go@v6
174174
with:

.github/workflows/build_and_test_x86.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
ARCH: x86_64
2525
VERSION: ${{ inputs.version }}
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
with:
2929
ref: "${{ github.event.pull_request.head.sha }}"
3030
- run: |
@@ -70,7 +70,7 @@ jobs:
7070
ARCH: x86_64
7171
VERSION: ${{ inputs.version }}
7272
steps:
73-
- uses: actions/checkout@v5
73+
- uses: actions/checkout@v6
7474
with:
7575
ref: "${{ github.event.pull_request.head.sha }}"
7676
- run: |
@@ -116,7 +116,7 @@ jobs:
116116
ARCH: x86_64
117117
VERSION: ${{ inputs.version }}
118118
steps:
119-
- uses: actions/checkout@v5
119+
- uses: actions/checkout@v6
120120
with:
121121
ref: "${{ github.event.pull_request.head.sha }}"
122122
- run: |
@@ -186,7 +186,7 @@ jobs:
186186
test: ${{ fromJson(needs.detect.outputs.tests) }}
187187
fail-fast: false
188188
steps:
189-
- uses: actions/checkout@v5
189+
- uses: actions/checkout@v6
190190
with:
191191
ref: "${{ github.event.pull_request.head.sha }}"
192192
- name: Install Go
@@ -255,7 +255,7 @@ jobs:
255255
COS_TIMEOUT: 1600
256256
VERSION: ${{ inputs.version }}
257257
steps:
258-
- uses: actions/checkout@v5
258+
- uses: actions/checkout@v6
259259
with:
260260
ref: "${{ github.event.pull_request.head.sha }}"
261261
- name: Install Go

.github/workflows/cache-cleanup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
outputs:
2323
version: ${{ steps.version.outputs.version }}
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
with:
2727
ref: "${{ github.event.pull_request.head.sha }}"
2828
- run: |

.github/workflows/cli.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- name: Install Go
1818
uses: actions/setup-go@v6
1919
with:

.github/workflows/docs-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Dart Sass
2121
run: sudo snap install dart-sass
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
submodules: recursive
2626
fetch-depth: 0

.github/workflows/nightly.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
PLATFORM: x86_64
1616
TOOLKIT_REPO: ghcr.io/${{github.repository}}/elemental-cli
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- run: |
2020
git fetch --prune --unshallow
2121
- name: Log in to ghcr.io

.github/workflows/push-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: docker/setup-buildx-action@v3
2626
with:
2727
install: true
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
with:
3030
ref: ${{ github.event.inputs.ref }}
3131
- run: |

0 commit comments

Comments
 (0)