Skip to content

Commit e1a1597

Browse files
Bump actions/checkout from 2 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6ae542d commit e1a1597

7 files changed

+10
-10
lines changed

.github/workflows/build.from.developer.branch.deploy.to.dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
steps:
5555
- name: Check out repository
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
ref: ${{ github.event.inputs.choice }}
5959

.github/workflows/build.from.main.branch.deploy.to.dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Check out repository
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545

4646
- name: Determine image tags
4747
if: env.TAG == ''

.github/workflows/build.from.release.branch.deploy.to.dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
steps:
5050
- name: Check out repository
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252
with:
5353
ref: grad-release
5454

.github/workflows/create_tag.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Check out repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v4
3939

4040
- name: Create tag
4141
uses: actions/github-script@v5
@@ -54,7 +54,7 @@ jobs:
5454
oc: 4
5555

5656
# https://github.com/redhat-actions/oc-login#readme
57-
- uses: actions/checkout@v2
57+
- uses: actions/checkout@v4
5858
- name: Tag in OpenShift
5959
run: |
6060
set -eux

.github/workflows/deploy_prod.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Check out repository
44-
uses: actions/checkout@v2
44+
uses: actions/checkout@v4
4545

4646
- name: Get latest tag
4747
uses: actions-ecosystem/action-get-latest-tag@v1
@@ -53,7 +53,7 @@ jobs:
5353
oc: 4
5454

5555
# https://github.com/redhat-actions/oc-login#readme
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v4
5757
- name: Deploy
5858
run: |
5959
set -eux

.github/workflows/deploy_test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Check out repository
44-
uses: actions/checkout@v2
44+
uses: actions/checkout@v4
4545

4646
- name: Get latest tag
4747
uses: actions-ecosystem/action-get-latest-tag@v1
@@ -53,7 +53,7 @@ jobs:
5353
oc: 4
5454

5555
# https://github.com/redhat-actions/oc-login#readme
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v4
5757
- name: Deploy
5858
run: |
5959
set -eux

.github/workflows/on.pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: api
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2323
- name: Set up JDK 18

0 commit comments

Comments
 (0)