Skip to content

Commit 6d31aed

Browse files
ci(deps): bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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 d233d02 commit 6d31aed

16 files changed

+25
-25
lines changed

.github/workflows/amber-auto-review.yml

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

2525
steps:
2626
- name: Checkout PR head
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
repository: ${{ github.event.pull_request.head.repo.full_name }}
3030
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/amber-dependency-sync.yml

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

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
ref: main
2424
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/amber-issue-handler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
4646
steps:
4747
- name: Checkout repository
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v6
4949
with:
5050
fetch-depth: 0
5151

.github/workflows/backend-unit-tests.yml

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

4040
steps:
4141
- name: Checkout code
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343

4444
- name: Create reports directory
4545
shell: bash

.github/workflows/claude-code-review.yml

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

3232
steps:
3333
- name: Checkout PR head
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
repository: ${{ github.event.pull_request.head.repo.full_name }}
3737
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939

4040
- name: Checkout repository (fork-compatible)
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
with:
4343
repository: ${{ github.event.issue.pull_request && steps.pr-info.outputs.is_fork == 'true' && format('{0}/{1}', steps.pr-info.outputs.pr_head_owner, steps.pr-info.outputs.pr_head_repo) || github.repository }}
4444
ref: ${{ github.event.issue.pull_request && steps.pr-info.outputs.pr_head_ref || github.ref }}

.github/workflows/components-build-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
state-sync: ${{ steps.filter.outputs.state-sync }}
4848
steps:
4949
- name: Checkout code
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151
with:
5252
ref: ${{ github.event.pull_request.head.sha || github.sha }}
5353

@@ -106,7 +106,7 @@ jobs:
106106
steps:
107107
- name: Checkout code
108108
if: matrix.component.changed == 'true' || github.event.inputs.force_build_all == 'true' || contains(github.event.inputs.components, matrix.component.name) || (github.event_name == 'workflow_dispatch' && github.event.inputs.components == '' && github.event.inputs.force_build_all != 'true')
109-
uses: actions/checkout@v5
109+
uses: actions/checkout@v6
110110
with:
111111
ref: ${{ github.event.pull_request.head.sha || github.sha }}
112112

@@ -165,7 +165,7 @@ jobs:
165165
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch'
166166
steps:
167167
- name: Checkout code
168-
uses: actions/checkout@v5
168+
uses: actions/checkout@v6
169169

170170
- name: Install oc
171171
uses: redhat-actions/oc-installer@v1
@@ -192,7 +192,7 @@ jobs:
192192
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && (needs.detect-changes.outputs.frontend == 'true' || needs.detect-changes.outputs.backend == 'true' || needs.detect-changes.outputs.operator == 'true' || needs.detect-changes.outputs.claude-runner == 'true' || needs.detect-changes.outputs.state-sync == 'true')
193193
steps:
194194
- name: Checkout code
195-
uses: actions/checkout@v5
195+
uses: actions/checkout@v6
196196

197197
- name: Install oc
198198
uses: redhat-actions/oc-installer@v1
@@ -289,7 +289,7 @@ jobs:
289289
if: github.event_name == 'workflow_dispatch'
290290
steps:
291291
- name: Checkout code
292-
uses: actions/checkout@v5
292+
uses: actions/checkout@v6
293293

294294
- name: Install oc
295295
uses: redhat-actions/oc-installer@v1

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
microdnf install -y git tar
2727
2828
- name: Checkout
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: Install Python and dependencies
3232
run: |

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
claude-runner: ${{ steps.filter.outputs.claude-runner }}
3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Check for component changes
4242
uses: dorny/paths-filter@v3
@@ -60,7 +60,7 @@ jobs:
6060

6161
steps:
6262
- name: Checkout code
63-
uses: actions/checkout@v5
63+
uses: actions/checkout@v6
6464

6565
- name: Cleanup Diskspace
6666
id: cleanup

.github/workflows/frontend-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
- name: Set up Node.js
4444
uses: actions/setup-node@v6

0 commit comments

Comments
 (0)