fix: bump default actions/runner to 2.335.1#36
Merged
Conversation
GitHub stops allowing actions/runner v2.333.1 (the previous default) to run jobs on 2026-06-23. Bump the default runner-version to the latest release 2.335.1 and replace the SHA-256 checksum table with the x64/arm64 hashes from the v2.335.1 release body (the same source the verify-runner-url job cross-checks). Touches action.yml, src/config.js fallback, the checksum table + tests, README, the pr.yml comment, and the rebuilt dist/ bundle. Signed-off-by: yuriyryabikov <22548029+kurok@users.noreply.github.com>
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.
Why
GitHub sunsets
actions/runnerv2.333.1 — the action's current default — for job execution on 2026-06-23. Any consumer relying on the default (e.g.terraform-provider-namecheap's acceptance pipeline) is already emitting the deprecation warning and will break after that date.What
Bumps the default
runner-versionfrom2.333.1to the latest release2.335.1and swaps the pinned SHA-256 checksum table accordingly.action.yml—runner-versiondefault →2.335.1src/config.js— runtime fallback default →2.335.1src/runner-checksums.js— replaced x64/arm64 hashes with the v2.335.1 values, taken from the release body (the exact source theverify-runner-urljob cross-checks):4ef2f25285f0ae4477f1fe1e346db76d2f3ebf03824e2ddd1973a2819bf6c8cf6d1e85bfd1a506a8b17c1f1b9b57dba458ffed90898799aaa9f599520b0d9207tests/— updatedrunner-checksumsandconfigexpectationsREADME.md+pr.ymlcomment — doc defaultdist/— rebuilt withnpm run package(the diff is limited to the changed values)Verification
npm test→ 52/52 passnpm run lint→ cleandist/rebuilt from a cleannpm ci, sogit diff dist/is limited to the intended value changes —verify-distwill stay green.verify-runner-urlwill pass.Follow-up
After this merges and is tagged (e.g.
v3.0.2/v3),terraform-provider-namecheap'sci.ymlshould bump thenamecheap/ec2-github-runneraction pin (2 places) to the new SHA to actually adopt the runner bump.