Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#1012)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 25, 2023
1 parent 8c516eb commit 88cd6d2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,39 +66,39 @@ jobs:
# Create artifacts (only for Release)
# Create app-universal-release APK artifact asset for Release
- name: 'Upload universal .apk Release Artifact (for Release)'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: inputs.semver != '' # If this workflow is called from release.yml
with:
name: robosats-${{ inputs.semver }}-universal.apk
path: mobile/android/app/build/outputs/apk/release/app-universal-release.apk

# Create app-arm64-v8a-release APK artifact asset for Release
- name: 'Upload arm64-v8a .apk Release Artifact (for Release)'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: inputs.semver != '' # If this workflow is called from release.yml
with:
name: robosats-${{ inputs.semver }}-arm64-v8a.apk
path: mobile/android/app/build/outputs/apk/release/app-arm64-v8a-release.apk

# Create app-armeabi-v7a-release APK artifact asset for Release
- name: 'Upload armeabi-v7a .apk Release Artifact (for Release)'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: inputs.semver != '' # If this workflow is called from release.yml
with:
name: robosats-${{ inputs.semver }}-armeabi-v7a.apk
path: mobile/android/app/build/outputs/apk/release/app-armeabi-v7a-release.apk

# Create app-x86_64-release APK artifact asset for Release
- name: 'Upload x86_64 .apk Release Artifact (for Release)'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: inputs.semver != '' # If this workflow is called from release.yml
with:
name: robosats-${{ inputs.semver }}-x86_64.apk
path: mobile/android/app/build/outputs/apk/release/app-x86_64-release.apk

# Create app-x86-release APK artifact asset for Release
- name: 'Upload x86 .apk Release Artifact (for Release)'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: inputs.semver != '' # If this workflow is called from release.yml
with:
name: robosats-${{ inputs.semver }}-x86.apk
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/frontend-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,27 +50,27 @@ jobs:
cd frontend
npm run build
- name: 'Archive Web Basic Build Results'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: web-main-js
path: frontend/static/frontend/main.js
- name: 'Archive Web Basic SelfhostedBuild Results'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: web-basic-selfhosted-js
path: frontend/static/frontend/basic.selfhosted.js
- name: 'Archive Web PRO Build Results'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: web-pro-js
path: frontend/static/frontend/pro.js
- name: 'Archive Web PRO SelhostedBuild Results'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: web-pro-selfhosted-js
path: frontend/static/frontend/pro.selfhosted.js
- name: 'Archive Mobile Build Results'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mobile-web.bundle
path: mobile/html/Web.bundle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
USE_TOR: False

- name: 'Upload coverage report'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-report-${{ matrix.python-tag }}-${{ matrix.ln-vendor }}
path: htmlcov/

0 comments on commit 88cd6d2

Please sign in to comment.