Downgrade GitHub Actions to v4 and add workflow_dispatch trigger#5064
Closed
GAMERIASAAT wants to merge 1 commit intotermux:masterfrom
Closed
Downgrade GitHub Actions to v4 and add workflow_dispatch trigger#5064GAMERIASAAT wants to merge 1 commit intotermux:masterfrom
GAMERIASAAT wants to merge 1 commit intotermux:masterfrom
Conversation
- Downgrade actions/checkout, setup-java, upload-artifact from non-existent v5/v6 to stable v4 across all workflows - Fix gradle/actions references from @5/@v5 to @V3 - Add workflow_dispatch trigger to debug_build.yml for manual runs https://claude.ai/code/session_01XPjt7Dxds6TJCwSU2ehgL8
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
This PR updates the GitHub Actions workflows to use older versions of actions and adds manual workflow dispatch capability to the debug build workflow.
Key Changes
Action version downgrades: Downgraded all GitHub Actions to v4 versions:
actions/checkout: v6 → v4actions/setup-java: v5 → v4actions/upload-artifact: v6 → v4gradle/actions/dependency-submission: v5 → v3gradle/actions/wrapper-validation: v5 → v3Workflow dispatch trigger: Added
workflow_dispatchto the debug_build.yml workflow, allowing manual triggering of the build workflow from the GitHub Actions UIAffected Workflows
.github/workflows/debug_build.yml.github/workflows/dependency-submission.yml.github/workflows/gradle-wrapper-validation.yml.github/workflows/run_tests.yml.github/workflows/attach_debug_apks_to_release.ymlNotes
These version downgrades may be necessary for compatibility with specific GitHub Actions runner environments or to address known issues with newer versions.
https://claude.ai/code/session_01XPjt7Dxds6TJCwSU2ehgL8