From 8c86e37bccd6edf2ec1fb203f469c0d56d6ce50d Mon Sep 17 00:00:00 2001 From: Ardi Loot Date: Fri, 20 Feb 2026 23:26:17 +0200 Subject: [PATCH] fix: downgrade upload/download-artifact from v7 to v6 v7 tag does not exist for actions/upload-artifact and actions/download-artifact. The latest major version is v6. --- .github/workflows/publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1fb8d0a..6c9c7f7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,7 +41,7 @@ jobs: CIBW_ARCHS: ${{ matrix.cibw_archs }} CIBW_BUILD: ${{ matrix.cibw_build || env.CIBW_BUILD }} - - uses: actions/upload-artifact@v7 + - uses: actions/upload-artifact@v6 with: name: wheels-${{ matrix.os }}-${{ matrix.cibw_archs }} path: ./wheelhouse/*.whl @@ -61,7 +61,7 @@ jobs: - name: Build sdist run: uv build --sdist - - uses: actions/upload-artifact@v7 + - uses: actions/upload-artifact@v6 with: name: sdist path: dist/*.tar.gz @@ -96,7 +96,7 @@ jobs: fi fi - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v6 with: path: dist merge-multiple: true @@ -110,7 +110,7 @@ jobs: permissions: id-token: write steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v6 with: path: dist merge-multiple: true