Skip to content

Commit c87a5db

Browse files
authored
Merge pull request #68 from bcgov/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 8e51cc4 + 986dfab commit c87a5db

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
@@ -24,7 +24,7 @@ jobs:
2424
working-directory: api
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
fetch-depth: 0
3030
- 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
@@ -97,7 +97,7 @@ jobs:
9797
core.info(`All the required secrets are set`);
9898
}
9999
- name: Check out repository
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101

102102
- name: Determine image tags
103103
if: env.IMAGE_TAGS == ''
@@ -142,7 +142,7 @@ jobs:
142142
oc: 4
143143

144144
# https://github.com/redhat-actions/oc-login#readme
145-
- uses: actions/checkout@v4
145+
- uses: actions/checkout@v5
146146

147147
- name: Deploy API
148148
run: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
}
9696

9797
- name: Check out repository
98-
uses: actions/checkout@v4
98+
uses: actions/checkout@v5
9999

100100
- name: Get latest tag
101101
uses: actions-ecosystem/action-get-latest-tag@v1
@@ -107,7 +107,7 @@ jobs:
107107
oc: 4
108108

109109
# https://github.com/redhat-actions/oc-login#readme
110-
- uses: actions/checkout@v4
110+
- uses: actions/checkout@v5
111111

112112
- name: Deploy API
113113
run: |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
}
104104
105105
- name: Check out repository
106-
uses: actions/checkout@v4
106+
uses: actions/checkout@v5
107107

108108
- name: Install oc
109109
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)