chore: upgrade GitHub Actions runtimes - #2000
arnabnandy7 wants to merge 1 commit into
Conversation
@arnabnandy7 - Has any testing been done for the Dependabot Insights action? Thanks |
no @igordayen |
|
@arnabnandy7, usually GitHub workflows require testing in GitHub prior to commits; this is a special case. All scripts were debugged in GitHub prior to pushing to PRs. Please advise how you would like to proceed with testing. Thanks |
Also, we need to start with other linked PRs first |
@igordayen the PR branch is in a fork, so it is unavailable in the upstream repository’s Actions → Dependabot Insights branch selector. Please validate it using a temporary branch in 1. Fetch the PR commitFrom a clean checkout of git fetch origin main
git fetch https://github.com/arnabnandy7/embabel-agent.git chore/upgradeGithubActions2. Create an upstream validation branchgit switch --create chore/validateGithubActions origin/main
git cherry-pick e0c3a1a0ca6f7b51edfc7f86306ebd7aee91b8cb
git push origin chore/validateGithubActionsThis temporary upstream branch contains the same changes as PR #2000. 3. Run the Dependabot Insights workflow
The upstream repository will use its configured 4. Verify the runConfirm that:
5. Delete the temporary branchAfter validation: git push origin --delete chore/validateGithubActions |
Signed-off-by: Arnab Nandy <arnab_nandy7@yahoo.com>
e0c3a1a to
878ddd8
Compare
Summary
Upgrade GitHub Actions that target the deprecated Node.js 20 runtime.
Changes
actions/checkoutfrom v4 to v7.actions/setup-javafrom v4 to v6.actions/github-scriptfrom v7 to v9.peter-evans/repository-dispatchfrom v3 to v4.Existing workflow conditions, inputs, secrets, and behavior remain unchanged.
Validation
git diff --checkpassed..github/workflows.Additional context
The remaining
actions/github-scriptwarning comes from the reusablenotify-recoveryworkflow in the separateembabel/embabel-buildrepository and must be addressed there.Closes #1999.