Skip to content

Commit ca3835e

Browse files
authored
Fix golang/appengine CI (#280)
With google-github-actions/setup-gcloud#539, they broke Github workflows specifying the "master" branch ahead of the rename of the branch to 'main'.
1 parent da036ec commit ca3835e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-v2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
restore-keys: |
3333
${{ runner.os }}-${{ matrix.go-version }}-go-
3434
- name: Set up Cloud SDK
35-
uses: google-github-actions/setup-gcloud@master
35+
uses: google-github-actions/setup-gcloud@v0
3636
- name: Install
3737
working-directory: ${{env.working-directory}}
3838
env:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
restore-keys: |
3131
${{ runner.os }}-${{ matrix.go-version }}-go-
3232
- name: Set up Cloud SDK
33-
uses: google-github-actions/setup-gcloud@master
33+
uses: google-github-actions/setup-gcloud@v0
3434
- name: Install
3535
env:
3636
GO111MODULE: on

0 commit comments

Comments
 (0)