Skip to content

Commit 82c1c58

Browse files
authored
Update README and CI to use latest version (#365)
1 parent 5e5db2b commit 82c1c58

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

.eslintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ module.exports = {
99
'plugin:prettier/recommended',
1010
],
1111

12-
// We have many situations where we accept and expect arbitrary JSON payloads.
1312
rules: {
1413
'@typescript-eslint/no-explicit-any': 'off',
1514
},

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
project_id: '${{ vars.PROJECT_ID }}'
9191
workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}'
9292

93-
- uses: 'google-github-actions/setup-gcloud@main'
93+
- uses: 'google-github-actions/setup-gcloud@v2'
9494
with:
9595
version: '>= 363.0.0'
9696

@@ -143,7 +143,7 @@ jobs:
143143
workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}'
144144
service_account: '${{ vars.SERVICE_ACCOUNT_EMAIL }}'
145145

146-
- uses: 'google-github-actions/setup-gcloud@main'
146+
- uses: 'google-github-actions/setup-gcloud@v2'
147147
with:
148148
version: '>= 363.0.0'
149149

@@ -210,7 +210,7 @@ jobs:
210210
with:
211211
credentials_json: '${{ secrets.SERVICE_ACCOUNT_KEY_JSON }}'
212212

213-
- uses: 'google-github-actions/setup-gcloud@main'
213+
- uses: 'google-github-actions/setup-gcloud@v2'
214214
with:
215215
version: '>= 363.0.0'
216216

docs/EXAMPLES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
107107
108108
- name: 'Set up Cloud SDK'
109-
uses: 'google-github-actions/setup-gcloud@v1'
109+
uses: 'google-github-actions/setup-gcloud@v2'
110110
```
111111

112112
### Generating an OAuth 2.0 Access Token

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
"noImplicitAny": true,
1313
"esModuleInterop": true
1414
},
15-
"exclude": ["node_modules", "**/*.test.ts"]
15+
"exclude": ["node_modules/", "tests/"]
1616
}

0 commit comments

Comments
 (0)