ci: modernize GitHub Actions workflows and caching - #352
Open
indpriyanshuraj wants to merge 3 commits into
Open
Conversation
android.yml: - actions/checkout: v4 -> v7 - actions/setup-java: v4 -> v5 - android-actions/setup-android: v3 -> v4.0.1 - xmake-io/github-action-setup-xmake: v1 -> v1.2.5 - actions/upload-artifact: v4.6.2 -> v7.0.1 - softprops/action-gh-release: v2 -> v3.0.2 docs.yml: - actions/checkout: v4 -> v7 - actions/setup-node: v4 -> v7 - actions/upload-pages-artifact: v4 -> v5 - actions/deploy-pages: v4 -> v5 Signed-off-by: indpriyanshuraj <243560345+indpriyanshuraj@users.noreply.github.com>
Set default working directory for build steps and cache npm dependencies. Signed-off-by: Priyanshu Raj <243560345+indpriyanshuraj@users.noreply.github.com>
improves build speed and cache handling Signed-off-by: indpriyanshuraj <243560345+indpriyanshuraj@users.noreply.github.com>
indpriyanshuraj
force-pushed
the
chore/workflow-tuning
branch
from
August 10, 2026 17:02
1cd188f to
4977503
Compare
indpriyanshuraj
commented
Aug 12, 2026
| with: | ||
| java-version: "21" | ||
| distribution: temurin | ||
| cache: "gradle" |
Contributor
Author
There was a problem hiding this comment.
Add gradle to cache to reduce build time
indpriyanshuraj
commented
Aug 12, 2026
indpriyanshuraj
left a comment
Contributor
Author
There was a problem hiding this comment.
Remove warnings and improve build time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Update the Android and documentation workflows to GitHub Actions versions compatible with the current runner runtime, and remove the deprecation warnings from CI.
Changes
Note
Updated Actions
actions/checkout→v7actions/setup-java→v5actions/setup-node→v7actions/upload-artifact→v7actions/upload-pages-artifact→v5actions/deploy-pages→v5android-actions/setup-android→v4xmake-io/github-action-setup-xmake→v1.2.5softprops/action-gh-release→v3.0.2These reduces build time.
Validation