Skip to content

Commit 6ccfc26

Browse files
authored
Merge pull request #117 from bcgov/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents b226c85 + 17b32ba commit 6ccfc26

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci-api-build.and.test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
working-directory: api
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 0
3131
- uses: actions/setup-java@v5

.github/workflows/deploy-to.openshift-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
core.info(`✅ All the required secrets are set`);
9494
}
9595
- name: Check out repository
96-
uses: actions/checkout@v4
96+
uses: actions/checkout@v5
9797

9898
- name: Determine image tags
9999
if: env.IMAGE_TAGS == ''
@@ -138,7 +138,7 @@ jobs:
138138
oc: 4
139139

140140
# https://github.com/redhat-actions/oc-login#readme
141-
- uses: actions/checkout@v4
141+
- uses: actions/checkout@v5
142142

143143
- name: Deploy API
144144
run: |

.github/workflows/deploy-to.openshift-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
}
9292

9393
- name: Check out repository
94-
uses: actions/checkout@v4
94+
uses: actions/checkout@v5
9595

9696
- name: Get latest tag
9797
uses: actions-ecosystem/action-get-latest-tag@v1
@@ -103,7 +103,7 @@ jobs:
103103
oc: 4
104104

105105
# https://github.com/redhat-actions/oc-login#readme
106-
- uses: actions/checkout@v4
106+
- uses: actions/checkout@v5
107107

108108
- name: Deploy API
109109
run: |

.github/workflows/deploy-to.openshift-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
}
9999
100100
- name: Check out repository
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@v5
102102

103103
- name: Install oc
104104
uses: redhat-actions/openshift-tools-installer@v1

.github/workflows/tag-create.git.and.imagestream.tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Check out repository
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- name: Create tag
3939
uses: actions/github-script@v7
@@ -52,7 +52,7 @@ jobs:
5252
oc: 4
5353

5454
# https://github.com/redhat-actions/oc-login#readme
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
- name: Tag in OpenShift
5757
run: |
5858
set -eux

0 commit comments

Comments
 (0)