From ea7f44416763c768cd627fbf45224f8c3a99b70e Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Wed, 23 Mar 2022 03:13:19 -0400 Subject: [PATCH] Pin setup-gcloud to v0 instead of master (#12375) * Pin setup-gcloud to v0 instead of master. setup-gcloud will be updating the branch name from master to main in a future release. Even though GitHub will establish redirects, this will break any GitHub Actions workflows that pin to master. This PR updates your GitHub Actions workflows to pin to v0, which is the recommended best practice. Co-authored-by: Akihiro Nitta --- .github/workflows/events-recurrent.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/events-recurrent.yml b/.github/workflows/events-recurrent.yml index 834adc6c16..80d63b986b 100644 --- a/.github/workflows/events-recurrent.yml +++ b/.github/workflows/events-recurrent.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Setup gcloud CLI - uses: google-github-actions/setup-gcloud@master + uses: google-github-actions/setup-gcloud@v0 with: version: '290.0.1' service_account_key: ${{ secrets.GKE_SA_KEY_BASE64 }}