From 8f062ea43702baaa0dea45b2db8b015a65ad6fbc Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Thu, 26 Feb 2026 21:37:58 -0800 Subject: [PATCH] workflows: update {upload,download}-artifact No breaking changes. Continue wrapping dist artifacts in a ZIP because the containing directory name includes information about the Actions run that isn't included in the artifact names. Signed-off-by: Benjamin Gilbert --- .github/workflows/python.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index db31092..115be37 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -143,14 +143,14 @@ jobs: run: python examples/deepzoom/deepzoom_tile.py --viewer -o tiled tests/fixtures/small.svs - name: Archive sdist if: matrix.sdist - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: ${{ needs.pre-commit.outputs.dist-base }}-source path: artifacts/src compression-level: 0 - name: Archive wheel if: env.archive_wheel - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: ${{ needs.pre-commit.outputs.dist-base }}-${{ env.OS_ARCH_TAG }}-${{ matrix.python-version }} path: artifacts/whl @@ -222,7 +222,7 @@ jobs: run: python examples/deepzoom/deepzoom_tile.py --viewer -o tiled tests/fixtures/small.svs - name: Archive wheel if: env.archive_wheel - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: ${{ needs.pre-commit.outputs.dist-base }}-windows-x64-${{ matrix.python-version }} path: artifacts/whl @@ -267,7 +267,7 @@ jobs: - name: Build run: sphinx-build -d doctrees doc artifact/${{ needs.pre-commit.outputs.docs-base }} - name: Archive - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: ${{ needs.pre-commit.outputs.docs-base }} path: artifact @@ -286,7 +286,7 @@ jobs: id-token: write steps: - name: Download artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: pattern: "${{ needs.pre-commit.outputs.dist-base }}-*" merge-multiple: true