Skip to content

Commit 845328a

Browse files
committed
Update checkout github action to v4
1 parent 00ff42d commit 845328a

6 files changed

+11
-11
lines changed

.github/workflows/overcloud-host-image-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: [self-hosted, stackhpc-kayobe-config-kolla-builder]
4343
permissions: {}
4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
with:
4747
path: src/kayobe-config
4848

@@ -67,7 +67,7 @@ jobs:
6767
rm -f /tmp/updated_images.txt
6868
6969
- name: Clone StackHPC Kayobe repository
70-
uses: actions/checkout@v3
70+
uses: actions/checkout@v4
7171
with:
7272
repository: stackhpc/kayobe
7373
ref: refs/heads/stackhpc/${{ steps.openstack_release.outputs.openstack_release }}

.github/workflows/overcloud-host-image-promote.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: github.repository == 'stackhpc/stackhpc-kayobe-config'
3636
runs-on: [self-hosted, stackhpc-kayobe-config-kolla-builder]
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
with:
4040
path: src/kayobe-config
4141

@@ -46,7 +46,7 @@ jobs:
4646
echo "openstack_release=${BRANCH}" | sed "s|stable/||" >> $GITHUB_OUTPUT
4747
4848
- name: Clone StackHPC Kayobe repository
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050
with:
5151
repository: stackhpc/kayobe
5252
ref: refs/heads/stackhpc/${{ steps.openstack_release.outputs.openstack_release }}

.github/workflows/stackhpc-all-in-one.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
KAYOBE_VAULT_PASSWORD: ${{ secrets.KAYOBE_VAULT_PASSWORD }}
7878
KAYOBE_IMAGE: ${{ inputs.kayobe_image }}
7979
steps:
80-
- uses: actions/checkout@v3
80+
- uses: actions/checkout@v4
8181
with:
8282
submodules: true
8383

.github/workflows/stackhpc-build-kayobe-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
4949
- name: Checkout kayobe config
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151
with:
5252
submodules: true
5353

.github/workflows/stackhpc-container-image-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
openstack_release: ${{ steps.openstack_release.outputs.openstack_release }}
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757

5858
- name: Determine OpenStack release
5959
id: openstack_release
@@ -106,12 +106,12 @@ jobs:
106106
needs:
107107
- generate-tag
108108
steps:
109-
- uses: actions/checkout@v3
109+
- uses: actions/checkout@v4
110110
with:
111111
path: src/kayobe-config
112112

113113
- name: Clone StackHPC Kayobe repository
114-
uses: actions/checkout@v3
114+
uses: actions/checkout@v4
115115
with:
116116
repository: stackhpc/kayobe
117117
ref: refs/heads/stackhpc/${{ needs.generate-tag.outputs.openstack_release }}

.github/workflows/stackhpc-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
aio: ${{ steps.changes.outputs.aio }}
2323
steps:
2424
- name: GitHub Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- name: Check changed files
2828
uses: dorny/paths-filter@v2
@@ -47,7 +47,7 @@ jobs:
4747
if: github.repository == 'stackhpc/stackhpc-kayobe-config'
4848
steps:
4949
- name: GitHub Checkout 🛎
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151
with:
5252
fetch-depth: 0
5353
- name: Setup Python ${{ matrix.python-version }} 🐍

0 commit comments

Comments
 (0)