Skip to content

Commit 92f5134

Browse files
authored
Up artifact version (#430)
Starting January 30th, 2025, GitHub Actions no longer be able to use v3 of actions/upload-artifact or actions/download-artifact
1 parent 0b4c4ba commit 92f5134

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -580,12 +580,12 @@ jobs:
580580
export SHEET=https://docs.google.com/spreadsheets/d/${{ env.SECRET_RESULTS_SHEET_ID }}
581581
python nmos-testing/utilities/run-test-suites/gsheetsImport/resultsImporter.py --credentials ${{ env.GDRIVE_CREDENTIALS }} --sheet "$SHEET" --insert --json nmos-testing/results/${{ env.GITHUB_COMMIT }}-*.json || echo "upload failed"
582582
583-
- uses: actions/upload-artifact@v3.0.0
583+
- uses: actions/upload-artifact@v4
584584
with:
585585
name: ${{ env.BUILD_NAME }}_badges
586586
path: ${{ runner.workspace }}/nmos-testing/badges
587587

588-
- uses: actions/upload-artifact@v3.0.0
588+
- uses: actions/upload-artifact@v4
589589
with:
590590
name: ${{ env.BUILD_NAME }}_results
591591
path: ${{ runner.workspace }}/nmos-testing/results
@@ -606,7 +606,7 @@ jobs:
606606
echo "GITHUB_WORKSPACE=${{ github.workspace }}" >> $GITHUB_ENV
607607
echo "RUNNER_WORKSPACE=${{ runner.workspace }}" >> $GITHUB_ENV
608608
609-
- uses: actions/download-artifact@v3.0.2
609+
- uses: actions/download-artifact@v4
610610
with:
611611
path: ${{ runner.workspace }}/artifacts
612612

.github/workflows/src/build-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
echo "GITHUB_WORKSPACE=${{ github.workspace }}" >> $GITHUB_ENV
121121
echo "RUNNER_WORKSPACE=${{ runner.workspace }}" >> $GITHUB_ENV
122122
123-
- uses: actions/download-artifact@v3.0.2
123+
- uses: actions/download-artifact@v4
124124
with:
125125
path: ${{ runner.workspace }}/artifacts
126126

.github/workflows/src/save-results.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
export SHEET=https://docs.google.com/spreadsheets/d/${{ env.SECRET_RESULTS_SHEET_ID }}
77
python nmos-testing/utilities/run-test-suites/gsheetsImport/resultsImporter.py --credentials ${{ env.GDRIVE_CREDENTIALS }} --sheet "$SHEET" --insert --json nmos-testing/results/${{ env.GITHUB_COMMIT }}-*.json || echo "upload failed"
88
9-
- uses: actions/upload-artifact@v3.0.0
9+
- uses: actions/upload-artifact@v4
1010
with:
1111
name: ${{ env.BUILD_NAME }}_badges
1212
path: ${{ runner.workspace }}/nmos-testing/badges
1313

14-
- uses: actions/upload-artifact@v3.0.0
14+
- uses: actions/upload-artifact@v4
1515
with:
1616
name: ${{ env.BUILD_NAME }}_results
1717
path: ${{ runner.workspace }}/nmos-testing/results

0 commit comments

Comments
 (0)