Skip to content

Commit cde2312

Browse files
authored
Upgrade actions/upload-artifact so nightly tests can be run (#700)
Tests cannot be started because `actions/upload-artifact@v2` was deprecated. Upgrading to `v4`. The tests in this PR fail, since they run using the v2 action.
1 parent fb6fef1 commit cde2312

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/coverage_runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
override_pr: ${{ github.event.inputs.pr_number }}
102102

103103
- name: Upload remote controller logs if test run fails
104-
uses: actions/upload-artifact@v2
104+
uses: actions/upload-artifact@v4
105105
if: failure()
106106
with:
107107
name: rc-logs-${{ matrix.python-version }}-${{ matrix.os }}

.github/workflows/nightly_runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
HZ_SNAPSHOT_INTERNAL_PASSWORD: ${{ secrets.HZ_SNAPSHOT_INTERNAL_PASSWORD }}
3838
run: python run_tests.py
3939
- name: Upload remote controller logs on test failure
40-
uses: actions/upload-artifact@v2
40+
uses: actions/upload-artifact@v4
4141
if: failure()
4242
with:
4343
name: rc-logs-${{ matrix.python-version }}-${{ matrix.os }}

0 commit comments

Comments
 (0)