From c05cc3ca177dc4397556eeda3b2f21a52b0ca429 Mon Sep 17 00:00:00 2001 From: Angel Caamal Date: Thu, 9 Apr 2026 19:02:44 +0000 Subject: [PATCH] fix(ci): increase auth token lifetime to 3600s --- .github/workflows/custard-run-dev.yaml | 2 +- .github/workflows/custard-run.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/custard-run-dev.yaml b/.github/workflows/custard-run-dev.yaml index 596439a0f6..c77276acec 100644 --- a/.github/workflows/custard-run-dev.yaml +++ b/.github/workflows/custard-run-dev.yaml @@ -91,7 +91,7 @@ jobs: project_id: ${{ env.GOOGLE_SAMPLES_PROJECT }} workload_identity_provider: projects/1046198160504/locations/global/workloadIdentityPools/github-actions-pool/providers/github-actions-provider service_account: ${{ env.SERVICE_ACCOUNT }} - access_token_lifetime: 600s # 10 minutes + access_token_lifetime: 3600s # 1 hour token_format: id_token id_token_audience: https://action.test/ # service must have this custom audience id_token_include_email: true diff --git a/.github/workflows/custard-run.yaml b/.github/workflows/custard-run.yaml index 1ad7e86cea..6e3f2b05a1 100644 --- a/.github/workflows/custard-run.yaml +++ b/.github/workflows/custard-run.yaml @@ -137,7 +137,7 @@ jobs: project_id: ${{ env.GOOGLE_SAMPLES_PROJECT }} workload_identity_provider: projects/1046198160504/locations/global/workloadIdentityPools/github-actions-pool/providers/github-actions-provider service_account: ${{ env.SERVICE_ACCOUNT }} - access_token_lifetime: 600s # 10 minutes + access_token_lifetime: 3600s # 1 hour token_format: id_token id_token_audience: https://action.test/ # service must have this custom audience id_token_include_email: true