Skip to content

Commit 1706019

Browse files
Bump actions/checkout from 5 to 6 (codeready-toolchain#1226)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c0ed2a8 commit 1706019

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Install Go
2121
uses: actions/setup-go@v6
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Checkout code
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939

4040
- name: Install Go
4141
uses: actions/setup-go@v6

.github/workflows/ci-check-gomod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: check
1717
uses: codeready-toolchain/toolchain-cicd/gomod-check@master

.github/workflows/govulncheck.yml

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

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: Run govulncheck
1717
uses: codeready-toolchain/toolchain-cicd/govulncheck-action@master

.github/workflows/publish-operators-for-e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
# Checkout from PR event
2727
- name: Checkout code from PR event
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
if: ${{ github.event_name == 'pull_request_target' }}
3030
with:
3131
ref: ${{github.event.pull_request.head.ref}}
@@ -45,7 +45,7 @@ jobs:
4545
# Checkout the code based on the data retrieved from the previous step
4646
# Is executed only for comment events
4747
- name: Checkout code from PR
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
if: ${{ github.event_name == 'issue_comment' }}
5050
with:
5151
repository: ${{ fromJson(steps.request.outputs.data).head.repo.full_name }}

.github/workflows/publish-sandbox-ui-for-ui-e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
# Checkout from PR event
2525
- name: Checkout code from PR event
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
if: ${{ github.event_name == 'pull_request_target' }}
2828
with:
2929
ref: ${{github.event.pull_request.head.ref}}
@@ -43,7 +43,7 @@ jobs:
4343
# Checkout the code based on the data retrieved from the previous step
4444
# Is executed only for comment events
4545
- name: Checkout code from PR
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
if: ${{ github.event_name == 'issue_comment' }}
4848
with:
4949
repository: ${{ fromJson(steps.request.outputs.data).head.repo.full_name }}

0 commit comments

Comments
 (0)