From fc5a028ecdc1d68faadf38489f308fe9b05abc3f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:26:53 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact in /.github/workflows Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/publish.yml | 4 ++-- .github/workflows/rebuild-deb.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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: |