From 03ef9a377e74fa64805a53bfc551494eae61018c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 08:23:25 +0000 Subject: [PATCH] Bump actions/download-artifact from 4 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-test-publish.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index 03ec507d..e78b9adc 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -114,7 +114,7 @@ jobs: name: Deploy wheels to PyPI steps: - name: Download wheels - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: wheels - name: Set up Python 3.11 @@ -148,25 +148,25 @@ jobs: mkdir -p "${{ github.workspace }}/artifacts" - name: Download wheels id: artifact_wheel - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: ${{ github.workspace }}/artifacts/whl name: wheels - name: Download Windows id: artifact_windows - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: ${{ github.workspace }}/artifacts/win name: skytemple-randomizer-windows-app-x64 - name: Download MacOS Intel id: artifact_macos_x86 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: ${{ github.workspace }}/artifacts/mac_x86 name: skytemple-randomizer-mac-dmg-x86_64 - name: Download MacOS ARM id: artifact_macos_arm64 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: ${{ github.workspace }}/artifacts/mac_arm64 name: skytemple-randomizer-mac-dmg-arm64 @@ -201,19 +201,19 @@ jobs: mkdir -p "${{ github.workspace }}/artifacts" - name: Download Windows id: artifact_windows - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: ${{ github.workspace }}/artifacts/win name: skytemple-randomizer-windows-app-x64 - name: Download MacOS Intel id: artifact_macos_x86 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: ${{ github.workspace }}/artifacts/mac_x86 name: skytemple-randomizer-mac-dmg-x86_64 - name: Download MacOS ARM id: artifact_macos_arm64 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: ${{ github.workspace }}/artifacts/mac_arm64 name: skytemple-randomizer-mac-dmg-arm64