Skip to content

Commit

Permalink
Fix golang/appengine CI (#280)
Browse files Browse the repository at this point in the history
With google-github-actions/setup-gcloud#539, they broke Github workflows
specifying the "master" branch ahead of the rename of the branch to
'main'.
  • Loading branch information
bsiegert committed Apr 4, 2022
1 parent da036ec commit ca3835e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-v2.yaml
Expand Up @@ -32,7 +32,7 @@ jobs:
restore-keys: |
${{ runner.os }}-${{ matrix.go-version }}-go-
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@master
uses: google-github-actions/setup-gcloud@v0
- name: Install
working-directory: ${{env.working-directory}}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
restore-keys: |
${{ runner.os }}-${{ matrix.go-version }}-go-
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@master
uses: google-github-actions/setup-gcloud@v0
- name: Install
env:
GO111MODULE: on
Expand Down

0 comments on commit ca3835e

Please sign in to comment.