diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7da6ab768c1da..ba2295b9ceefb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -276,7 +276,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@v2 + - uses: actions/upload-artifact@v4 if: ${{ failure() && github.event_name == 'pull_request' }} with: name: missing-examples @@ -310,7 +310,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@v2 + - uses: actions/upload-artifact@v4 if: ${{ failure() && github.event_name == 'pull_request' }} with: name: missing-features @@ -348,7 +348,7 @@ jobs: run: | mkdir -p ./msrv echo ${{ github.event.number }} > ./msrv/NR - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: ${{ failure() && github.event_name == 'pull_request' && steps.check.conclusion == 'failure' }} with: name: msrv diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 4fd4c37e8a69d..8c43341720a01 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -120,7 +120,7 @@ jobs: - name: Save screenshots if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: screenshots-${{ matrix.device }}-${{ matrix.os_version }} path: .github/start-mobile-example/*.png diff --git a/.github/workflows/validation-jobs.yml b/.github/workflows/validation-jobs.yml index 8c575744060b0..9b728bb2a0f1a 100644 --- a/.github/workflows/validation-jobs.yml +++ b/.github/workflows/validation-jobs.yml @@ -108,16 +108,16 @@ jobs: zip traces.zip trace*.json zip -r screenshots.zip screenshots-* - name: save traces - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: example-traces.zip path: traces.zip - name: save screenshots - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: screenshots.zip path: screenshots.zip - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: ${{ failure() && github.event_name == 'pull_request' }} with: name: example-run @@ -175,7 +175,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@v3 + uses: actions/upload-artifact@v4 with: name: screenshots path: .github/start-wasm-example/screenshot-*.png