Skip to content
Open
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/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
working-directory: docs/
run: uv run --no-project make html SPHINXOPTS="-W --keep-going" # TODO also use -n in the future
- name: Upload artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: docs
path: docs/_build/html
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v6

- name: Download artifacts docs
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: docs
path: public/sphinx/html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: pre-commit/action@v3.0.1
- run: git diff --output=format.patch --exit-code || { cat format.patch; false; }
if: failure()
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
if: failure()
with:
name: format.patch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v13
uses: dawidd6/action-download-artifact@v16
with:
run_id: ${{ github.event.inputs.python_wheel_workflow_run_id }}
name: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uv pip install dist/rydstate*.whl
uv run --no-project pytest
- name: Upload wheels
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dist
path: dist/rydstate*
Expand All @@ -49,7 +49,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: dist
pattern: dist
Expand Down