Skip to content

Commit

Permalink
Up artifact version (#430)
Browse files Browse the repository at this point in the history
Starting January 30th, 2025, GitHub Actions no longer be able to use v3 of actions/upload-artifact or actions/download-artifact
  • Loading branch information
lo-simon authored Feb 3, 2025
1 parent 0b4c4ba commit 92f5134
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -580,12 +580,12 @@ jobs:
export SHEET=https://docs.google.com/spreadsheets/d/${{ env.SECRET_RESULTS_SHEET_ID }}
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"
- uses: actions/upload-artifact@v3.0.0
- uses: actions/upload-artifact@v4
with:
name: ${{ env.BUILD_NAME }}_badges
path: ${{ runner.workspace }}/nmos-testing/badges

- uses: actions/upload-artifact@v3.0.0
- uses: actions/upload-artifact@v4
with:
name: ${{ env.BUILD_NAME }}_results
path: ${{ runner.workspace }}/nmos-testing/results
Expand All @@ -606,7 +606,7 @@ jobs:
echo "GITHUB_WORKSPACE=${{ github.workspace }}" >> $GITHUB_ENV
echo "RUNNER_WORKSPACE=${{ runner.workspace }}" >> $GITHUB_ENV
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4
with:
path: ${{ runner.workspace }}/artifacts

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/src/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
echo "GITHUB_WORKSPACE=${{ github.workspace }}" >> $GITHUB_ENV
echo "RUNNER_WORKSPACE=${{ runner.workspace }}" >> $GITHUB_ENV
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4
with:
path: ${{ runner.workspace }}/artifacts

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/src/save-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
export SHEET=https://docs.google.com/spreadsheets/d/${{ env.SECRET_RESULTS_SHEET_ID }}
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"
- uses: actions/upload-artifact@v3.0.0
- uses: actions/upload-artifact@v4
with:
name: ${{ env.BUILD_NAME }}_badges
path: ${{ runner.workspace }}/nmos-testing/badges

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

0 comments on commit 92f5134

Please sign in to comment.