Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example-run-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/example-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validation-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down