-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use updated google auth action (#735)
We are getting [error annotations](https://github.com/pulumi/pulumi-docker/actions/runs/7094535875) on our workflow runs warning us of deprecation: ``` test (python) The v0 series of google-github-actions/auth is no longer maintained. It will not receive updates, improvements, or security patches. Please upgrade to the latest supported versions: https://github.com/google-github-actions/auth ``` The main caveat is this update requires Node 20.0+. We have this set in the same config file so I don't anticipate an issue.
- Loading branch information
1 parent
af1d4ce
commit 1875fd0
Showing
5 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,7 +70,7 @@ actionVersions: | |
|
||
configureAwsCredentials: aws-actions/configure-aws-credentials@v1 | ||
setupGcloud: google-github-actions/setup-gcloud@v0 | ||
googleAuth: google-github-actions/auth@v0 | ||
googleAuth: google-github-actions/auth@v2 | ||
goReleaser: goreleaser/goreleaser-action@v2 | ||
installGhRelease: jaxxstorm/[email protected] | ||
checkout: actions/checkout@v3 | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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