Skip to content

Commit 41ecfc4

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 cd9577b commit 41ecfc4

15 files changed

+24
-24
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
@@ -26,7 +26,7 @@ jobs:
2626
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0
3232

.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
@@ -35,7 +35,7 @@ jobs:
3535
claude-runner: ${{ steps.filter.outputs.claude-runner }}
3636
steps:
3737
- name: Checkout code
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
ref: ${{ github.event.pull_request.head.sha || github.sha }}
4141

@@ -87,7 +87,7 @@ jobs:
8787
steps:
8888
- name: Checkout code
8989
if: matrix.component.changed == 'true' || github.event_name == 'workflow_dispatch'
90-
uses: actions/checkout@v5
90+
uses: actions/checkout@v6
9191
with:
9292
ref: ${{ github.event.pull_request.head.sha || github.sha }}
9393

@@ -146,7 +146,7 @@ jobs:
146146
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch'
147147
steps:
148148
- name: Checkout code
149-
uses: actions/checkout@v5
149+
uses: actions/checkout@v6
150150

151151
- name: Install oc
152152
uses: redhat-actions/oc-installer@v1
@@ -169,7 +169,7 @@ jobs:
169169
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')
170170
steps:
171171
- name: Checkout code
172-
uses: actions/checkout@v5
172+
uses: actions/checkout@v6
173173

174174
- name: Install oc
175175
uses: redhat-actions/oc-installer@v1
@@ -253,7 +253,7 @@ jobs:
253253
if: github.event_name == 'workflow_dispatch'
254254
steps:
255255
- name: Checkout code
256-
uses: actions/checkout@v5
256+
uses: actions/checkout@v6
257257

258258
- name: Install oc
259259
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: Validate AGENTS.md symlink
6666
run: |

.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

.github/workflows/go-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
operator: ${{ steps.filter.outputs.operator }}
3636
steps:
3737
- name: Checkout code
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939

4040
- name: Check for Go changes
4141
uses: dorny/paths-filter@v3
@@ -57,7 +57,7 @@ jobs:
5757
if: needs.detect-go-changes.outputs.backend == 'true' || github.event_name == 'workflow_dispatch'
5858
steps:
5959
- name: Checkout code
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161

6262
- name: Set up Go
6363
uses: actions/setup-go@v6
@@ -95,7 +95,7 @@ jobs:
9595
if: needs.detect-go-changes.outputs.operator == 'true' || github.event_name == 'workflow_dispatch'
9696
steps:
9797
- name: Checkout code
98-
uses: actions/checkout@v5
98+
uses: actions/checkout@v6
9999

100100
- name: Set up Go
101101
uses: actions/setup-go@v6

0 commit comments

Comments
 (0)