Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/upload-artifact action to v4 #338

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
cp "$file" "$to_path"

- name: Upload release APK artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Release APK
path: ${{ steps.rename_apk.outputs.to_path }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
cp "$file" "$to_path"

- name: Upload release AAB artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Release AAB
path: ${{ steps.rename_aab.outputs.to_path }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
cp "$file" "$to_path"

- name: Upload Release APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Release APK
path: ${{ steps.rename_apk.outputs.to_path }}
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
cp "$file" "$to_path"

- name: Upload Release AAB
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Release AAB
path: ${{ steps.rename_aab.outputs.to_path }}
Expand Down