Skip to content

Commit 95e2d15

Browse files
bharathkkbLewis Llobera
andauthored
fix: Update action names (#250) (#251)
Co-authored-by: Lewis Llobera <[email protected]>
1 parent 4a93bb3 commit 95e2d15

File tree

21 files changed

+32
-32
lines changed

21 files changed

+32
-32
lines changed

.github/workflows/appengine-deploy-it.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
16-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
16+
- uses: google-github-actions/setup-gcloud@master
1717
with:
1818
service_account_key: ${{ secrets.APPENGINE_DEPLOY_SA_KEY_JSON }}
1919
export_default_credentials: true

.github/workflows/deploy-cf-it.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v2
19-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC for credentials
19+
- uses: google-github-actions/setup-gcloud@master # Set up ADC for credentials
2020
with:
2121
service_account_email: ${{ secrets.DEPLOY_CF_SA_EMAIL }}
2222
service_account_key: ${{ secrets.DEPLOY_CF_SA_KEY_JSON }}
@@ -75,7 +75,7 @@ jobs:
7575
node-version: 12.x
7676
- run: npm install
7777
working-directory: ./deploy-cloud-functions
78-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
78+
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
7979
with:
8080
service_account_email: ${{ secrets.DEPLOY_CF_SA_EMAIL }}
8181
service_account_key: ${{ secrets.DEPLOY_CF_SA_KEY_JSON }}
@@ -116,7 +116,7 @@ jobs:
116116
node-version: 12.x
117117
- run: npm install
118118
working-directory: ./deploy-cloud-functions
119-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
119+
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
120120
with:
121121
service_account_email: ${{ secrets.DEPLOY_CF_SA_EMAIL }}
122122
service_account_key: ${{ secrets.DEPLOY_CF_SA_KEY_JSON }}

.github/workflows/deploy-cf-unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: npm run lint
3333
working-directory: ./deploy-cloud-functions
3434

35-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
35+
- uses: google-github-actions/setup-gcloud@master
3636
with:
3737
service_account_email: ${{ secrets.DEPLOY_CF_SA_EMAIL }}
3838
service_account_key: ${{ secrets.DEPLOY_CF_SA_KEY_B64 }}

.github/workflows/deploy-cloudrun-credentials-it.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- id: service
1515
run: echo ::set-output name=service::run-gcloud-$GITHUB_SHA
1616
- uses: actions/checkout@v2
17-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
17+
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
1818
with:
1919
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
2020
export_default_credentials: true
@@ -52,7 +52,7 @@ jobs:
5252
node-version: 12.x
5353
- run: npm install
5454
working-directory: ./deploy-cloudrun
55-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
55+
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
5656
with:
5757
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
5858
export_default_credentials: true
@@ -80,7 +80,7 @@ jobs:
8080
node-version: 12.x
8181
- run: npm install
8282
working-directory: ./deploy-cloudrun
83-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
83+
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
8484
with:
8585
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
8686
export_default_credentials: true
@@ -95,7 +95,7 @@ jobs:
9595
runs-on: ubuntu-latest
9696
needs: [json, gcloud, b64_json]
9797
steps:
98-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
98+
- uses: google-github-actions/setup-gcloud@master
9999
with:
100100
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
101101
project_id: ${{ secrets.DEPLOY_CLOUDRUN_PROJECT_ID }}

.github/workflows/deploy-cloudrun-it.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
service: ${{ steps.service.outputs.service }}
3232
env_vars: TEST_ENV=TEST_VAR
3333
- name: Setup Authentication with gcloud
34-
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
34+
uses: google-github-actions/setup-gcloud@master
3535
with:
3636
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
3737
export_default_credentials: true
@@ -81,7 +81,7 @@ jobs:
8181
service: ${{ steps.service.outputs.service }}
8282
metadata: ./deploy-cloudrun/tests/unit/service.basic.yaml
8383
- name: Setup Authentication with gcloud
84-
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
84+
uses: google-github-actions/setup-gcloud@master
8585
with:
8686
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
8787
export_default_credentials: true
@@ -114,7 +114,7 @@ jobs:
114114
service: ${{ steps.service.outputs.service }}
115115
metadata: ./deploy-cloudrun/tests/unit/service.full.yaml
116116
- name: Setup Authentication with gcloud
117-
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
117+
uses: google-github-actions/setup-gcloud@master
118118
with:
119119
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
120120
export_default_credentials: true
@@ -148,7 +148,7 @@ jobs:
148148
runs-on: ubuntu-latest
149149
needs: [envvars, metadata, yaml]
150150
steps:
151-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
151+
- uses: google-github-actions/setup-gcloud@master
152152
with:
153153
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
154154
project_id: ${{ secrets.DEPLOY_CLOUDRUN_PROJECT_ID }}

.github/workflows/deploy-cloudrun.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: npm run lint
3333
working-directory: ./deploy-cloudrun
3434

35-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
35+
- uses: google-github-actions/setup-gcloud@master
3636
with:
3737
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
3838
export_default_credentials: true

.github/workflows/get-gke-credentials-it.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC for credentials
15+
- uses: google-github-actions/setup-gcloud@master # Set up ADC for credentials
1616
with:
1717
service_account_key: ${{ secrets.GET_GKE_CRED_SA_KEY_JSON }}
1818
export_default_credentials: true

.github/workflows/get-gke-credentials-unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: npm run lint
3333
working-directory: ./get-gke-credentials
3434

35-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
35+
- uses: google-github-actions/setup-gcloud@master
3636
with:
3737
service_account_key: ${{ secrets.GET_GKE_CRED_SA_KEY_JSON }}
3838
export_default_credentials: true

.github/workflows/get-secretmanager-secrets-it.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
16-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
16+
- uses: google-github-actions/setup-gcloud@master
1717
with:
1818
service_account_key: ${{ secrets.GET_SECRETMANAGER_SECRETS_SA_KEY_B64 }}
1919
export_default_credentials: true

.github/workflows/upload-cloud-storage-it.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: |-
1919
npm install
2020
npm run build
21-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
21+
- uses: google-github-actions/setup-gcloud@master
2222
with:
2323
service_account_email: ${{ secrets.UPLOAD_CLOUD_STORAGE_GCP_SA_EMAIL }}
2424
service_account_key: ${{ secrets.UPLOAD_CLOUD_STORAGE_GCP_SA_KEY_B64 }}
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: ubuntu-latest
9494
steps:
9595
- uses: actions/checkout@v2
96-
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
96+
- uses: google-github-actions/setup-gcloud@master
9797
with:
9898
service_account_email: ${{ secrets.UPLOAD_CLOUD_STORAGE_GCP_SA_EMAIL }}
9999
service_account_key: ${{ secrets.UPLOAD_CLOUD_STORAGE_GCP_SA_KEY_B64 }}

0 commit comments

Comments
 (0)