mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 10:56:24 +00:00
Bump actions/download-artifact from 3 to 4 (#1011)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
5356508d7b
commit
baf318d98e
2
.github/workflows/android-build.yml
vendored
2
.github/workflows/android-build.yml
vendored
@ -32,7 +32,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@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: mobile-web.bundle
|
||||
path: mobile/html/Web.bundle
|
||||
|
4
.github/workflows/client-image.yml
vendored
4
.github/workflows/client-image.yml
vendored
@ -35,7 +35,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@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: web-basic-selfhosted-js
|
||||
path: nodeapp/static/frontend/
|
||||
@ -51,7 +51,7 @@ jobs:
|
||||
|
||||
- name: 'Download pro.js Artifact for a release'
|
||||
if: inputs.semver != '' # Only if fired as job in release.yml
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: web-pro-selfhosted-js
|
||||
path: nodeapp/static/frontend/
|
||||
|
4
.github/workflows/coordinator-image.yml
vendored
4
.github/workflows/coordinator-image.yml
vendored
@ -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@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: web-main-js
|
||||
path: frontend/static/frontend/
|
||||
@ -42,7 +42,7 @@ jobs:
|
||||
|
||||
- name: 'Download pro.js Artifact for a release'
|
||||
if: inputs.semver != '' # Only if fired as job in release.yml
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: web-pro-js
|
||||
path: frontend/static/frontend/
|
||||
|
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
@ -83,7 +83,7 @@ jobs:
|
||||
|
||||
# Upload app-universal-release APK artifact asset
|
||||
- name: 'Download universal APK Artifact'
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: robosats-${{ needs.check-versions.outputs.semver }}-universal.apk
|
||||
path: .
|
||||
@ -100,7 +100,7 @@ jobs:
|
||||
|
||||
# Upload app-arm64-v8a-release APK artifact asset
|
||||
- name: 'Download arm64-v8a APK Artifact'
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: robosats-${{ needs.check-versions.outputs.semver }}-arm64-v8a.apk
|
||||
path: .
|
||||
@ -117,7 +117,7 @@ jobs:
|
||||
|
||||
# Upload app-armeabi-v7a-release APK artifact asset
|
||||
- name: 'Download armeabi-v7a APK Artifact'
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: robosats-${{ needs.check-versions.outputs.semver }}-armeabi-v7a.apk
|
||||
path: .
|
||||
@ -134,7 +134,7 @@ jobs:
|
||||
|
||||
# Upload app-x86_64-release APK artifact asset
|
||||
- name: 'Download x86_64 APK Artifact'
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: robosats-${{ needs.check-versions.outputs.semver }}-x86_64.apk
|
||||
path: .
|
||||
@ -151,7 +151,7 @@ jobs:
|
||||
|
||||
# Upload app-x86-release APK artifact asset
|
||||
- name: 'Download x86 APK Artifact'
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: robosats-${{ needs.check-versions.outputs.semver }}-x86.apk
|
||||
path: .
|
||||
|
Loading…
Reference in New Issue
Block a user