From 74ddf225cbc2bd0ffa52ffe617dd3e984fca913f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Aug 2025 08:09:22 +0000 Subject: [PATCH] chore(deps): bump actions/download-artifact from 4 to 5 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/android-build.yml | 2 +- .github/workflows/coordinator-image.yml | 2 +- .github/workflows/desktop-build.yml | 2 +- .github/workflows/release.yml | 14 +++++++------- .github/workflows/selfhosted-client-image.yml | 2 +- .github/workflows/web-client-image.yml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml index 320be209..2de26b14 100644 --- a/.github/workflows/android-build.yml +++ b/.github/workflows/android-build.yml @@ -41,7 +41,7 @@ jobs: - name: 'Download main.js Artifact for a release' if: inputs.semver != '' # Only if fired as job in release.yml - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: mobile-web.bundle path: android/app/src/main/assets diff --git a/.github/workflows/coordinator-image.yml b/.github/workflows/coordinator-image.yml index 1864f62e..49dae632 100644 --- a/.github/workflows/coordinator-image.yml +++ b/.github/workflows/coordinator-image.yml @@ -26,7 +26,7 @@ jobs: - name: 'Download Basic main.js Artifact for a release' if: inputs.semver != '' # Only if fired as job in release.yml - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: django-main-static path: frontend diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index e8f17b10..b288b9fb 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -38,7 +38,7 @@ jobs: - name: 'Download Basic main.js Artifact for a release' if: inputs.semver != '' # Only if fired as job in release.yml - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: desktop-main-static path: desktopApp diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4ad26857..dc250079 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -103,7 +103,7 @@ jobs: # Upload app-universal-release APK artifact asset - name: 'Download universal APK Artifact' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: app-universal-release.apk path: . @@ -121,7 +121,7 @@ jobs: # Upload app-arm64-v8a-release APK artifact asset - name: 'Download arm64-v8a APK Artifact' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: app-arm64-v8a-release.apk path: . @@ -138,7 +138,7 @@ jobs: # Upload app-armeabi-v7a-release APK artifact asset - name: 'Download armeabi-v7a APK Artifact' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: app-armeabi-v7a-release.apk path: . @@ -155,7 +155,7 @@ jobs: # Upload app-x86_64-release APK artifact asset - name: 'Download x86_64 APK Artifact' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: app-x86_64-release.apk path: . @@ -172,7 +172,7 @@ jobs: # Upload macOS desktop artifact asset - name: 'Download macOS Build Artifact' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: . name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-mac-darwin-x64.zip @@ -190,7 +190,7 @@ jobs: # Upload linux desktop artifact asset - name: 'Download linux Build Artifact' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: . name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-linux-x64.zip @@ -208,7 +208,7 @@ jobs: # Upload Windows desktop artifact asset - name: 'Download Windows Build Artifact' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: . name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-win32-ia32.zip diff --git a/.github/workflows/selfhosted-client-image.yml b/.github/workflows/selfhosted-client-image.yml index 260261ab..392cb2b7 100644 --- a/.github/workflows/selfhosted-client-image.yml +++ b/.github/workflows/selfhosted-client-image.yml @@ -32,7 +32,7 @@ jobs: - name: 'Download Basic main.js Artifact for a release' if: inputs.semver != '' # Only if fired as job in release.yml - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: nodeapp-main-static path: nodeapp diff --git a/.github/workflows/web-client-image.yml b/.github/workflows/web-client-image.yml index 766da9d8..62199cea 100644 --- a/.github/workflows/web-client-image.yml +++ b/.github/workflows/web-client-image.yml @@ -32,7 +32,7 @@ jobs: - name: 'Download Basic main.js Artifact for a release' if: inputs.semver != '' # Only if fired as job in release.yml - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: web-main-static path: web