diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-02-25 15:53:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-25 15:53:20 -0500 |
commit | 4a20435d3c4f7875c1d6f681cd5c791de8722496 (patch) | |
tree | 5b400a94b84d240075783adbe1ebb60304e0b910 | |
parent | d332bf113259f65e90b18b543f19def248e38daa (diff) |
chore(ci): pin setup-gcloud to `v0` instead of `master` (#13764)
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3a42c12b..961c6515a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,7 +121,7 @@ jobs: github.repository == 'denoland/deno' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) - uses: google-github-actions/setup-gcloud@master + uses: google-github-actions/setup-gcloud@v0 with: project_id: denoland service_account_key: ${{ secrets.GCP_SA_KEY }} @@ -135,7 +135,7 @@ jobs: github.repository == 'denoland/deno' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) - uses: google-github-actions/setup-gcloud@master + uses: google-github-actions/setup-gcloud@v0 env: CLOUDSDK_PYTHON: ${{env.pythonLocation}}\python.exe with: @@ -618,7 +618,7 @@ jobs: if: github.repository == 'denoland/deno' && github.ref == 'refs/heads/main' steps: - name: Setup gcloud - uses: google-github-actions/setup-gcloud@master + uses: google-github-actions/setup-gcloud@v0 with: project_id: denoland service_account_key: ${{ secrets.GCP_SA_KEY }} |