Skip to content

Commit abf67aa

Browse files
authored
Update README and CI to use latest version (#342)
1 parent 12815a6 commit abf67aa

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/cleanup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
steps:
1717
- uses: 'actions/checkout@v4'
1818

19-
- uses: 'google-github-actions/auth@main'
19+
- uses: 'google-github-actions/auth@v2'
2020
with:
2121
workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}'
2222
service_account: '${{ vars.SERVICE_ACCOUNT_EMAIL }}'
2323

24-
- uses: 'google-github-actions/setup-gcloud@main'
24+
- uses: 'google-github-actions/setup-gcloud@v2'
2525

2626
- name: Delete services
2727
run: |-

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: 'npm build'
3434
run: 'npm ci && npm run build'
3535

36-
- uses: 'google-github-actions/auth@main'
36+
- uses: 'google-github-actions/auth@v2'
3737
with:
3838
workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}'
3939
service_account: '${{ vars.SERVICE_ACCOUNT_EMAIL }}'

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131

3232
steps:
3333
- id: 'auth'
34-
uses: 'google-github-actions/auth@v1'
34+
uses: 'google-github-actions/auth@v2'
3535
with:
3636
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
3737
service_account: '[email protected]'
3838

3939
- id: 'deploy'
40-
uses: 'google-github-actions/deploy-appengine@v1'
40+
uses: 'google-github-actions/deploy-appengine@v2'
4141

4242
# Example of using the output
4343
- id: 'test'
@@ -178,13 +178,13 @@ jobs:
178178
179179
steps:
180180
- id: 'auth'
181-
uses: 'google-github-actions/auth@v1'
181+
uses: 'google-github-actions/auth@v2'
182182
with:
183183
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
184184
service_account: '[email protected]'
185185
186186
- id: 'deploy'
187-
uses: 'google-github-actions/deploy-appengine@v1'
187+
uses: 'google-github-actions/deploy-appengine@v2'
188188
```
189189

190190
### Via Application Default Credentials
@@ -199,7 +199,7 @@ jobs:
199199
job_id:
200200
steps:
201201
- id: 'deploy'
202-
uses: 'google-github-actions/deploy-appengine@v1'
202+
uses: 'google-github-actions/deploy-appengine@v2'
203203
```
204204

205205
## Advanced Configuration
@@ -217,7 +217,7 @@ minutes.
217217
jobs:
218218
job_id:
219219
steps:
220-
- uses: 'google-github-actions/deploy-appengine@v1'
220+
- uses: 'google-github-actions/deploy-appengine@v2'
221221
env:
222222
CLOUDSDK_APP_CLOUD_BUILD_TIMEOUT: 1800 # 30 minutes
223223
```

0 commit comments

Comments
 (0)