Skip to content

Commit

Permalink
Starting January 30th, 2025, GitHub Actions no longer be able to use …
Browse files Browse the repository at this point in the history
…v3 of actions/upload-artifact or actions/download-artifact
  • Loading branch information
lo-simon committed Feb 3, 2025
1 parent 5fd9532 commit aebbde0
Showing 1 changed file with 3 additions and 3 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

0 comments on commit aebbde0

Please sign in to comment.