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/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@v5
uses: actions/upload-artifact@v6
with:
name: docs
path: docs/_build/html
Expand All @@ -36,13 +36,13 @@ jobs:
- uses: actions/checkout@v6

- name: Download artifacts docs
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: docs
path: public/sphinx/html

- name: Deploy pages
uses: JamesIves/github-pages-deploy-action@v4.7.4
uses: JamesIves/github-pages-deploy-action@v4.7.6
with:
branch: gh-pages
folder: public
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@v5
- uses: actions/upload-artifact@v6
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@v11
uses: dawidd6/action-download-artifact@v12
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@v5
uses: actions/upload-artifact@v6
with:
name: dist
path: dist/rydstate*
Expand All @@ -49,7 +49,7 @@ jobs:

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