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/gen-expected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Generate expected values (darwin-arm64)
run: uv run python scripts/e2e_train.py --update-expected --verbose

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: expected-darwin-arm64
path: tests/expected_values.json
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Generate expected values (linux)
run: uv run python scripts/e2e_train.py --update-expected --verbose

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: expected-linux
path: tests/expected_values.json
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
EOF

- name: Upload merged artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: expected-values
path: expected_values.json
4 changes: 2 additions & 2 deletions .github/workflows/gpu-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Upload GPU expected values
if: ${{ inputs.update_expected }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
Comment thread
ryan-williams marked this conversation as resolved.
name: expected-linux-gpu
path: tests/expected_values.json
Expand All @@ -97,7 +97,7 @@ jobs:

- name: Upload CPU expected values
if: ${{ inputs.update_expected }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: expected-linux
path: tests/expected_values.json
Expand Down
Loading