diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 97c8265..f2761a3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -153,7 +153,7 @@ jobs: poetry run pip install twine poetry run twine check dist/* - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: python-dist path: dist/ @@ -269,7 +269,7 @@ jobs: echo "📋 Package Contents:" dpkg-deb --contents "${DEB_FILE}" | head -20 - name: Upload DEB artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: deb-${{ matrix.arch }} path: dist/audex_${{ needs.create-release.outputs.version }}_${{ matrix.arch }}.deb diff --git a/.github/workflows/rebuild-deb.yml b/.github/workflows/rebuild-deb.yml index 0335481..cecb104 100644 --- a/.github/workflows/rebuild-deb.yml +++ b/.github/workflows/rebuild-deb.yml @@ -101,7 +101,7 @@ jobs: dpkg-deb --contents "${DEB_FILE}" | head -20 - name: Upload DEB artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: deb-${{ matrix.arch }} path: dist/audex_${{ needs.check-latest-release.outputs.version }}_${{ matrix.arch }}.deb diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a4cba9..a812374 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -71,7 +71,7 @@ jobs: shell: bash - name: Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: test-results-${{ matrix.os }}-py${{ matrix.python-version }} path: |