diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 3c63fa6..96b130d 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -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 @@ -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 diff --git a/.github/workflows/pre_commit.yml b/.github/workflows/pre_commit.yml index e0da4e4..2512b12 100644 --- a/.github/workflows/pre_commit.yml +++ b/.github/workflows/pre_commit.yml @@ -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 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c693cef..d455ccf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 diff --git a/.github/workflows/python_wheel.yml b/.github/workflows/python_wheel.yml index d23a4e8..96201b9 100644 --- a/.github/workflows/python_wheel.yml +++ b/.github/workflows/python_wheel.yml @@ -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* @@ -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