summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.generate.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-03-21 04:40:29 +1100
committerGitHub <noreply@github.com>2024-03-20 10:40:29 -0700
commit2ce645137a6539411dad8d9fe359bc651b215ba5 (patch)
treeffa88d30a2640c45706f1394f521ccfd4102f677 /.github/workflows/ci.generate.ts
parent9593cf2852d83d0629bc97428ac83a962cb2eb09 (diff)
chore: update Google Cloud actions (#22839)
These actions use Node 20 instead of 16 (which is deprecated).
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x.github/workflows/ci.generate.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index a19c8abc0..948096c63 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -203,7 +203,7 @@ const installDenoStep = {
const authenticateWithGoogleCloud = {
name: "Authenticate with Google Cloud",
- uses: "google-github-actions/auth@v1",
+ uses: "google-github-actions/auth@v2",
with: {
"project_id": "denoland",
"credentials_json": "${{ secrets.GCP_SA_KEY }}",
@@ -510,7 +510,7 @@ const ci = {
"(github.ref == 'refs/heads/main' ||",
"startsWith(github.ref, 'refs/tags/'))",
].join("\n"),
- uses: "google-github-actions/setup-gcloud@v1",
+ uses: "google-github-actions/setup-gcloud@v2",
with: {
project_id: "denoland",
},
@@ -525,7 +525,7 @@ const ci = {
"(github.ref == 'refs/heads/main' ||",
"startsWith(github.ref, 'refs/tags/'))",
].join("\n"),
- uses: "google-github-actions/setup-gcloud@v1",
+ uses: "google-github-actions/setup-gcloud@v2",
env: {
CLOUDSDK_PYTHON: "${{env.pythonLocation}}\\python.exe",
},
@@ -1061,7 +1061,7 @@ const ci = {
authenticateWithGoogleCloud,
{
name: "Setup gcloud",
- uses: "google-github-actions/setup-gcloud@v1",
+ uses: "google-github-actions/setup-gcloud@v2",
with: {
project_id: "denoland",
},