Skip to content

Commit e2b9952

Browse files
Bump actions/checkout from 3 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...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]>
1 parent ce05b03 commit e2b9952

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/build_container_develop_branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
if: ${{ github.event.workflow_run.conclusion == 'success' }}
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v5
2525
- name: 'Download artifact'
2626
uses: actions/github-script@v7
2727
with:

.github/workflows/build_container_non_develop_branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
if: ${{ github.event.workflow_run.conclusion == 'success' }}
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v5
2626
- name: 'Download artifact'
2727
uses: actions/github-script@v7
2828
with:

.github/workflows/build_contributer_container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
github.event.workflow_run.event == 'pull_request' &&
2020
github.event.workflow_run.conclusion == 'success'
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v5
2323
- name: 'Download artifact'
2424
uses: actions/github-script@v7
2525
with:

.github/workflows/build_package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
--health-timeout 5s
2121
--health-retries 5
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v5
2424
- name: Set up JDK 11
2525
uses: actions/setup-java@v2
2626
with:

.github/workflows/build_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
--health-timeout 5s
2828
--health-retries 5
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v5
3131
- name: Set up JDK 11
3232
uses: actions/setup-java@v2
3333
with:

.github/workflows/run_trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: ${{ github.event.workflow_run.conclusion == 'success' }}
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v5
2323
- id: trivy-db
2424
name: Check trivy db sha
2525
env:

0 commit comments

Comments
 (0)