Update README and CI to use latest version (#365)

This commit is contained in:
Seth Vargo 2023-12-13 10:28:29 -05:00 committed by GitHub
parent 5e5db2b28b
commit 82c1c583d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 6 deletions

View File

@ -9,7 +9,6 @@ module.exports = {
'plugin:prettier/recommended', 'plugin:prettier/recommended',
], ],
// We have many situations where we accept and expect arbitrary JSON payloads.
rules: { rules: {
'@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-explicit-any': 'off',
}, },

View File

@ -90,7 +90,7 @@ jobs:
project_id: '${{ vars.PROJECT_ID }}' project_id: '${{ vars.PROJECT_ID }}'
workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}' workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}'
- uses: 'google-github-actions/setup-gcloud@main' - uses: 'google-github-actions/setup-gcloud@v2'
with: with:
version: '>= 363.0.0' version: '>= 363.0.0'
@ -143,7 +143,7 @@ jobs:
workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}' workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}'
service_account: '${{ vars.SERVICE_ACCOUNT_EMAIL }}' service_account: '${{ vars.SERVICE_ACCOUNT_EMAIL }}'
- uses: 'google-github-actions/setup-gcloud@main' - uses: 'google-github-actions/setup-gcloud@v2'
with: with:
version: '>= 363.0.0' version: '>= 363.0.0'
@ -210,7 +210,7 @@ jobs:
with: with:
credentials_json: '${{ secrets.SERVICE_ACCOUNT_KEY_JSON }}' credentials_json: '${{ secrets.SERVICE_ACCOUNT_KEY_JSON }}'
- uses: 'google-github-actions/setup-gcloud@main' - uses: 'google-github-actions/setup-gcloud@v2'
with: with:
version: '>= 363.0.0' version: '>= 363.0.0'

View File

@ -106,7 +106,7 @@ jobs:
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
- name: 'Set up Cloud SDK' - name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1' uses: 'google-github-actions/setup-gcloud@v2'
``` ```
### Generating an OAuth 2.0 Access Token ### Generating an OAuth 2.0 Access Token

View File

@ -12,5 +12,5 @@
"noImplicitAny": true, "noImplicitAny": true,
"esModuleInterop": true "esModuleInterop": true
}, },
"exclude": ["node_modules", "**/*.test.ts"] "exclude": ["node_modules/", "tests/"]
} }