Skip to content

Commit 1fb6002

Browse files
Bump actions/checkout from 4 to 5 (#1182)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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 7ac3539 commit 1fb6002

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.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@v4
18+
uses: actions/checkout@v5
1919

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

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

.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@v4
15+
uses: actions/checkout@v5
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@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Install Go
1717
uses: actions/setup-go@v5

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# Checkout from PR event - in that case the comment field is empty
1919
- name: Checkout code from PR event
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
if: ${{ github.event.comment == '' }}
2222
with:
2323
ref: ${{github.event.pull_request.head.ref}}
@@ -38,7 +38,7 @@ jobs:
3838
# Checkout the code based on the data retrieved from the previous step
3939
# Is executed only for comment events - in that case the pull_request field is empty
4040
- name: Checkout code from PR
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242
if: ${{ github.event.pull_request == '' }}
4343
with:
4444
repository: ${{ fromJson(steps.request.outputs.data).head.repo.full_name }}

0 commit comments

Comments
 (0)