ci: Upgrade deprecated GitHub Actions to current major versions#6293
Open
ntkathole wants to merge 1 commit intofeast-dev:masterfrom
Open
ci: Upgrade deprecated GitHub Actions to current major versions#6293ntkathole wants to merge 1 commit intofeast-dev:masterfrom
ntkathole wants to merge 1 commit intofeast-dev:masterfrom
Conversation
5e5bfa6 to
bec3865
Compare
f5f30ae to
12abd5e
Compare
Signed-off-by: ntkathole <nikhilkathole2683@gmail.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.
What this PR does / why we need it:
ci: upgrade deprecated GitHub Actions to current major versions
Summary
aws-actions/configure-aws-credentials@v1→@v4, which resolves flakytest_push_features_and_read_asyncDynamoDB integration test failures caused by unreliable credential propagation from the deprecated actionProblem
The
pr-integration-testsworkflow usesaws-actions/configure-aws-credentials@v1, which relies on the deprecated::set-outputcommand for internal credential handling. GitHub is actively disabling this mechanism, causing intermittent credential propagation failures. This manifests as a flakyUnrecognizedClientException: The security token included in the request is invaliderror specifically in the async DynamoDB test path, because:boto3client caches credentials at the class level (initialized once duringstore.apply()and reused)aiobotocoreclient creates a fresh session per instance, re-resolving credentials from the environment each time — making it sensitive to the degradedv1action outputAdditionally, the CI annotations flag multiple deprecated actions across workflows that will be force-migrated to Node.js 24 by GitHub starting June 2nd, 2026.
Changes
aws-actions/configure-aws-credentials@v1@v4google-github-actions/auth@v1@v2google-github-actions/setup-gcloud@v1@v2actions/setup-go@v2@v5actions/setup-node@v3@v4github/codeql-action/*@v3@v4actions/upload-pages-artifact@v3@v4All inputs used by the workflows (
aws-access-key-id,credentials_json,project_id,go-version,node-version, etc.) are confirmed compatible with the new versions — no workflow configuration changes required beyond the version bumps.Test plan
pr-integration-testspasses, specificallytest_push_features_and_read_async[...dynamodb...]pr-registration-integration-testspassespr-local-integration-testspasses (unaffected, uses no cloud credentials)set-outputor Node.js deprecation warnings in CI annotations