CI: add workflow_dispatch and bump deprecated action versions#126
Open
aosen-xiong wants to merge 1 commit into
Open
CI: add workflow_dispatch and bump deprecated action versions#126aosen-xiong wants to merge 1 commit into
aosen-xiong wants to merge 1 commit into
Conversation
Enable manual re-triggering from the Actions UI and update actions/checkout (v2 -> v4) and actions/setup-java (v2 -> v4), which run on EOL Node 16. Also add a Python 3.9 setup step, since ubuntu-latest no longer ships Python 3.8 by default. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR updates the CI workflow so it can be manually re-run and uses current GitHub Actions versions for checkout, Java setup, and Python setup.
Changes:
- Adds
workflow_dispatchto enable manual CI runs. - Updates
actions/checkoutandactions/setup-javato current major versions. - Adds Python 3.9 setup before the Java build/test steps.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
workflow_dispatch:so CI can be re-triggered manually from the Actions UIactions/checkoutv2 → v4 andactions/setup-javav2 → v4 (v2 runs on EOL Node 16 and is deprecated)actions/setup-python@v5with Python 3.9 (ubuntu-latest no longer ships Python 3.8 by default, which can break nested CFI build scripts)# - uses: actions/checkout@v2comment and normalize${{ ... }}spacingTest plan
🤖 Generated with Claude Code