Skip to content

Commit a7c1e27

Browse files
authored
Upgrade Gcloud setup dependency (feast-dev#1405)
Signed-off-by: Willem Pienaar <git@willem.co>
1 parent cc00315 commit a7c1e27

3 files changed

Lines changed: 15 additions & 9 deletions

File tree

.github/workflows/integration_tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ jobs:
1111
container: gcr.io/kf-feast/feast-ci:latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
14+
- name: Set up Cloud SDK
15+
uses: google-github-actions/setup-gcloud@master
1516
with:
16-
version: '290.0.1'
17-
export_default_credentials: true
1817
project_id: ${{ secrets.GCP_PROJECT_ID }}
1918
service_account_key: ${{ secrets.GCP_SA_KEY }}
19+
export_default_credentials: true
20+
- name: Use gcloud CLI
21+
run: gcloud info
2022
- name: Install dependencies
2123
run: make install-python-ci-dependencies
2224
- name: Compile protos

.github/workflows/pr_integration_tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,14 @@ jobs:
2222
# code from the PR.
2323
ref: ${{ github.event.pull_request.merge_commit_sha }}
2424
submodules: recursive
25-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
25+
- name: Set up Cloud SDK
26+
uses: google-github-actions/setup-gcloud@master
2627
with:
27-
version: '290.0.1'
28-
export_default_credentials: true
2928
project_id: ${{ secrets.GCP_PROJECT_ID }}
3029
service_account_key: ${{ secrets.GCP_SA_KEY }}
30+
export_default_credentials: true
31+
- name: Use gcloud CLI
32+
run: gcloud info
3133
- uses: actions/checkout@v2
3234
- name: Install dependencies
3335
run: make install-python-ci-dependencies

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,14 @@ jobs:
6262
with:
6363
username: ${{ secrets.DOCKERHUB_USERNAME }}
6464
password: ${{ secrets.DOCKERHUB_TOKEN }}
65-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
65+
- name: Set up Cloud SDK
66+
uses: google-github-actions/setup-gcloud@master
6667
with:
67-
version: '290.0.1'
68-
export_default_credentials: true
6968
project_id: ${{ secrets.GCP_PROJECT_ID }}
7069
service_account_key: ${{ secrets.GCP_SA_KEY }}
70+
export_default_credentials: true
71+
- name: Use gcloud CLI
72+
run: gcloud info
7173
- run: gcloud auth configure-docker --quiet
7274
- name: Get m2 cache
7375
run: |

0 commit comments

Comments
 (0)