Skip to content

Commit 9578a98

Browse files
committed
CI: Update GitHub action versions for node20
node16 support is deprecated and will be dropped.
1 parent fd3adf6 commit 9578a98

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ jobs:
362362
if: inputs.ubuntu-jammy && steps.build_ubuntu_jammy.outcome == 'success'
363363

364364
- name: Upload updated images artifact
365-
uses: actions/upload-artifact@v3
365+
uses: actions/upload-artifact@v4
366366
with:
367367
name: Updated images list
368368
path: /tmp/updated_images.txt
@@ -374,7 +374,7 @@ jobs:
374374
steps.build_ubuntu_jammy.outcome == 'success'
375375

376376
- name: Upload CentOS build logs if build failed
377-
uses: actions/upload-artifact@v3
377+
uses: actions/upload-artifact@v4
378378
with:
379379
name: CentOS build logs
380380
path: |
@@ -384,7 +384,7 @@ jobs:
384384
if: steps.build_centos_stream_8.outcome == 'failure'
385385

386386
- name: Upload Rocky 8 build logs if build failed
387-
uses: actions/upload-artifact@v3
387+
uses: actions/upload-artifact@v4
388388
with:
389389
name: Rocky 8 build logs
390390
path: |
@@ -394,7 +394,7 @@ jobs:
394394
if: steps.build_rocky_8.outcome == 'failure'
395395

396396
- name: Upload Rocky 9 build logs if build failed
397-
uses: actions/upload-artifact@v3
397+
uses: actions/upload-artifact@v4
398398
with:
399399
name: Rocky 9 build logs
400400
path: |
@@ -404,7 +404,7 @@ jobs:
404404
if: steps.build_rocky_9.outcome == 'failure'
405405

406406
- name: Upload Ubuntu Focal 20.04 build logs if build failed
407-
uses: actions/upload-artifact@v3
407+
uses: actions/upload-artifact@v4
408408
with:
409409
name: Ubuntu Focal 20.04 build logs
410410
path: |
@@ -414,7 +414,7 @@ jobs:
414414
if: steps.build_ubuntu_focal.outcome == 'failure'
415415

416416
- name: Upload Ubuntu Jammy 22.04 build logs if build failed
417-
uses: actions/upload-artifact@v3
417+
uses: actions/upload-artifact@v4
418418
with:
419419
name: Ubuntu Jammy 22.04 build logs
420420
path: |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ jobs:
297297
if: ${{ !cancelled() }}
298298

299299
- name: Upload test result artifacts
300-
uses: actions/upload-artifact@v3
300+
uses: actions/upload-artifact@v4
301301
with:
302302
name: tempest-results-${{ inputs.os_distribution }}-${{ inputs.os_release }}-${{ inputs.neutron_plugin }}
303303
path: tempest-artifacts/*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ jobs:
209209
run: if [ $(wc -l < ${{ matrix.distro }}-container-images) -le 1 ]; then exit 1; fi
210210

211211
- name: Upload container images artifact
212-
uses: actions/upload-artifact@v3
212+
uses: actions/upload-artifact@v4
213213
with:
214214
name: ${{ matrix.distro }} container images
215215
path: ${{ matrix.distro }}-container-images

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v4
2626

2727
- name: Check changed files
28-
uses: dorny/paths-filter@v2
28+
uses: dorny/paths-filter@v3
2929
id: changes
3030
with:
3131
# Filters are defined in this file.
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
fetch-depth: 0
5353
- name: Setup Python ${{ matrix.python-version }} 🐍
54-
uses: actions/setup-python@v4
54+
uses: actions/setup-python@v5
5555
with:
5656
python-version: ${{ matrix.python-version }}
5757
- name: Install Tox 📦

0 commit comments

Comments
 (0)