Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
run: flutter build apk

- name: Upload APK
uses: actions/upload-artifact@v4
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated the actions/upload-artifact action to its latest major version v5. This ensures the workflow benefits from the latest features, bug fixes, and security patches provided by the action maintainers. Always aim to keep GitHub Actions up-to-date.

Suggested change
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5

uses: actions/upload-artifact@v5
with:
name: apk
path: build/app/outputs/flutter-apk/
Expand Down
Loading