Skip to content

Commit ff54094

Browse files
Bump actions/checkout from 4 to 5 (#6980)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d96a807 commit ff54094

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
outputs:
1919
skip: ${{ steps.check_docs_only.outputs.skip }}
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 0
2424
- id: check_docs_only
@@ -39,7 +39,7 @@ jobs:
3939
environment: deploy
4040
steps:
4141
- name: checkout
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 0
4545

@@ -92,7 +92,7 @@ jobs:
9292

9393
# Check out repo before tag step for script.
9494
- name: checkout
95-
uses: actions/checkout@v4
95+
uses: actions/checkout@v5
9696
with:
9797
fetch-depth: 0
9898

@@ -138,7 +138,7 @@ jobs:
138138

139139
# Check out repo before tag step for script.
140140
- name: checkout
141-
uses: actions/checkout@v4
141+
uses: actions/checkout@v5
142142
with:
143143
fetch-depth: 0
144144

.github/workflows/freshen-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
git_tags: ${{ steps.tags.outputs.git_tags }}
1919
steps:
2020
- name: checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 0
2424
- id: tags
@@ -45,7 +45,7 @@ jobs:
4545
password: ${{ secrets.QUAY_PASSWORD }}
4646
registry: quay.io
4747
- name: checkout
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949
with:
5050
fetch-depth: 1
5151
- name: build and push

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
outputs:
1010
skip: ${{ steps.check_docs_only.outputs.skip }}
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- id: check_docs_only
@@ -26,7 +26,7 @@ jobs:
2626
needs: check_docs_only
2727
if: needs.check_docs_only.outputs.skip != 'true'
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232

.github/workflows/olm-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: check-olm-minor-releases
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- id: run-check-olm
1717
run: ./hack/check-olm.sh
1818

.github/workflows/test-go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
outputs:
1313
skip: ${{ steps.check_docs_only.outputs.skip }}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- id: check_docs_only
@@ -29,7 +29,7 @@ jobs:
2929
needs: check_docs_only
3030
if: needs.check_docs_only.outputs.skip != 'true'
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
with:
3434
fetch-depth: 0
3535

@@ -49,7 +49,7 @@ jobs:
4949
needs: check_docs_only
5050
if: needs.check_docs_only.outputs.skip != 'true'
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v5
5353
with:
5454
fetch-depth: 0
5555

.github/workflows/test-helm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
outputs:
1010
skip: ${{ steps.check_docs_only.outputs.skip }}
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- id: check_docs_only
@@ -26,7 +26,7 @@ jobs:
2626
needs: check_docs_only
2727
if: needs.check_docs_only.outputs.skip != 'true'
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232

.github/workflows/test-sample-go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
outputs:
1010
skip: ${{ steps.check_docs_only.outputs.skip }}
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- id: check_docs_only
@@ -26,7 +26,7 @@ jobs:
2626
needs: check_docs_only
2727
if: needs.check_docs_only.outputs.skip != 'true'
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232

.github/workflows/test-sanity.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
outputs:
1010
skip: ${{ steps.check_docs_only.outputs.skip }}
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- id: check_docs_only
@@ -26,7 +26,7 @@ jobs:
2626
needs: check_docs_only
2727
if: needs.check_docs_only.outputs.skip != 'true'
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232

@@ -45,7 +45,7 @@ jobs:
4545
name: docs
4646
runs-on: ubuntu-24.04
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
with:
5050
fetch-depth: 0
5151
submodules: recursive

0 commit comments

Comments
 (0)