diff --git a/.github/workflows/package-macos.yml b/.github/workflows/package-macos.yml index c2ed99a77..98d8172e7 100644 --- a/.github/workflows/package-macos.yml +++ b/.github/workflows/package-macos.yml @@ -76,7 +76,7 @@ jobs: APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }} CODESIGN_MACOS_P12_PASSWORD: ${{ secrets.CODESIGN_MACOS_P12_PASSWORD }} - name: Archive production artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: macos-app-${{ matrix.setup.macos-deployment-version }} path: artifacts/ diff --git a/.github/workflows/package-pypi.yml b/.github/workflows/package-pypi.yml index 254b677d6..49736e19d 100644 --- a/.github/workflows/package-pypi.yml +++ b/.github/workflows/package-pypi.yml @@ -67,7 +67,7 @@ jobs: run: | rm -rf "$HOME/.gnupg" - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: picard-sdist path: dist/* @@ -117,9 +117,9 @@ jobs: run: | python setup.py clean bdist_wheel - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: picard-bdist-${{ runner.os }} + name: picard-bdist-${{ runner.os }}-${{ matrix.python-version }} path: dist/*.whl - name: Publish Python distribution to PyPI if: startsWith(github.ref, 'refs/tags/') && env.TWINE_PASSWORD diff --git a/.github/workflows/package-windows.yml b/.github/workflows/package-windows.yml index 0ddbdcda4..a614e8b23 100644 --- a/.github/workflows/package-windows.yml +++ b/.github/workflows/package-windows.yml @@ -121,7 +121,7 @@ jobs: if: env.CODESIGN == '1' run: Remove-Item .\codesign.pfx - name: Archive production artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: matrix.type != 'signed-app' || env.CODESIGN == '1' with: name: windows-${{ matrix.type }}