diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5d007e03fd88..25a2e46b18160 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -412,7 +412,7 @@ jobs: - name: log failed task - missing update if: ${{ failure() && github.event_name == 'pull_request' && steps.missing-update.conclusion == 'failure' }} run: touch ./missing-examples/missing-update - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: ${{ failure() && github.event_name == 'pull_request' }} with: name: missing-examples @@ -447,7 +447,7 @@ jobs: - name: log failed task - missing update if: ${{ failure() && github.event_name == 'pull_request' && steps.missing-update.conclusion == 'failure' }} run: touch ./missing-features/missing-update - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: ${{ failure() && github.event_name == 'pull_request' }} with: name: missing-features @@ -492,7 +492,7 @@ jobs: run: | mkdir -p ./msrv echo ${{ github.event.number }} > ./msrv/NR - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: ${{ failure() && github.event_name == 'pull_request' && steps.check.conclusion == 'failure' }} with: name: msrv diff --git a/.github/workflows/example-run-report.yml b/.github/workflows/example-run-report.yml index 4e8a7ed6f075e..d4a12a6af8838 100644 --- a/.github/workflows/example-run-report.yml +++ b/.github/workflows/example-run-report.yml @@ -54,7 +54,7 @@ jobs: mkdir screenshots mv screenshots-* screenshots/ - name: save screenshots - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: screenshots-macos path: screenshots diff --git a/.github/workflows/example-run.yml b/.github/workflows/example-run.yml index 2f812fae9cbba..57e29970dbc62 100644 --- a/.github/workflows/example-run.yml +++ b/.github/workflows/example-run.yml @@ -58,7 +58,7 @@ jobs: mkdir traces && mv trace*.json traces/ mkdir screenshots && mv screenshots-* screenshots/ - name: save traces - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: example-traces-macos path: traces @@ -67,11 +67,11 @@ jobs: run: | echo ${{ github.event.number }} > ./screenshots/PR - name: save screenshots - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: screenshots-macos path: screenshots - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: ${{ failure() && github.event_name == 'pull_request' }} with: name: example-run-macos @@ -133,16 +133,16 @@ jobs: mkdir traces && mv trace*.json traces/ mkdir screenshots && mv screenshots-* screenshots/ - name: save traces - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: example-traces-linux path: traces - name: save screenshots - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: screenshots-linux path: screenshots - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: ${{ failure() && github.event_name == 'pull_request' }} with: name: example-run-linux @@ -197,16 +197,16 @@ jobs: mkdir traces && mv trace*.json traces/ mkdir screenshots && mv screenshots-* screenshots/ - name: save traces - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: example-traces-windows path: traces - name: save screenshots - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: screenshots-windows path: screenshots - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: ${{ failure() && github.event_name == 'pull_request' }} with: name: example-run-windows diff --git a/.github/workflows/validation-jobs.yml b/.github/workflows/validation-jobs.yml index 333bf9824d642..36f166d6d8bb4 100644 --- a/.github/workflows/validation-jobs.yml +++ b/.github/workflows/validation-jobs.yml @@ -147,7 +147,7 @@ jobs: xvfb-run cargo run -p build-wasm-example -- --browsers chromium --browsers firefox --frames 25 --test 2d_shapes lighting text_debug breakout - name: Save screenshots - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: screenshots-wasm path: .github/start-wasm-example/screenshot-*.png