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
4 changes: 2 additions & 2 deletions .github/workflows/fork_pr_benchmarks_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ jobs:
pytest --benchmark-json results.json tests/test_integration_features.py
- name: Upload Benchmark Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: benchmark_results.json
path: ./results.json
- name: Upload GitHub Pull Request Event
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: event.json
path: ${{ github.event_path }}
2 changes: 1 addition & 1 deletion .github/workflows/run-tutorials.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
TEST_RUN=True papermill -k tests --request-save-on-cell-execute docs/tutorials/${{ matrix.tutorial }}.ipynb ${{ matrix.tutorial }}.ipynb
- name: Archive Notebooks
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: tutorials-${{ matrix.tutorial }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Archive Integration Test Plots
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: integration-test-plots-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.compiler }}
path: |
Expand Down
Loading