From 03551627c9606bd958e97337301bf5f9cd54d7da Mon Sep 17 00:00:00 2001 From: Claas Augner Date: Fri, 16 Jan 2026 11:59:21 +0100 Subject: [PATCH] ci(workflows): reduce cache TTL from 1 day to 1 hour --- .github/workflows/deploy-prod-api.yml | 2 +- .github/workflows/deploy-prod-updates.yml | 2 +- .github/workflows/deploy-stage-api.yml | 2 +- .github/workflows/deploy-stage-updates.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-prod-api.yml b/.github/workflows/deploy-prod-api.yml index 2ece89a..f9d9480 100644 --- a/.github/workflows/deploy-prod-api.yml +++ b/.github/workflows/deploy-prod-api.yml @@ -68,7 +68,7 @@ jobs: destination: bcd-prod-mdn/bcd/api/v0/current resumable: false headers: |- - cache-control: public, max-age=86400 + cache-control: public, max-age=3600 parent: false concurrency: 500 process_gcloudignore: false diff --git a/.github/workflows/deploy-prod-updates.yml b/.github/workflows/deploy-prod-updates.yml index 44fff68..83b3a2c 100644 --- a/.github/workflows/deploy-prod-updates.yml +++ b/.github/workflows/deploy-prod-updates.yml @@ -60,7 +60,7 @@ jobs: - name: Sync Rumba update run: |- - gsutil -m -h "Cache-Control:public, max-age=86400" rsync -d -r rumba-updates/ gs://updates-prod-mdn/rumba-bcd-updates + gsutil -m -h "Cache-Control:public, max-age=3600" rsync -d -r rumba-updates/ gs://updates-prod-mdn/rumba-bcd-updates trigger-prod-rumba-update-if-new: name: Trigger rumba updates if new release. diff --git a/.github/workflows/deploy-stage-api.yml b/.github/workflows/deploy-stage-api.yml index c886b0c..52b3f66 100644 --- a/.github/workflows/deploy-stage-api.yml +++ b/.github/workflows/deploy-stage-api.yml @@ -71,7 +71,7 @@ jobs: destination: bcd-stage-mdn/bcd/api/v0/current resumable: false headers: |- - cache-control: public, max-age=86400 + cache-control: public, max-age=3600 parent: false concurrency: 500 process_gcloudignore: false diff --git a/.github/workflows/deploy-stage-updates.yml b/.github/workflows/deploy-stage-updates.yml index c633a70..b328e9b 100644 --- a/.github/workflows/deploy-stage-updates.yml +++ b/.github/workflows/deploy-stage-updates.yml @@ -63,7 +63,7 @@ jobs: - name: Sync Rumba update run: |- - gsutil -m -h "Cache-Control:public, max-age=86400" rsync -d -r rumba-updates/ gs://updates-stage-mdn/rumba-bcd-updates + gsutil -m -h "Cache-Control:public, max-age=3600" rsync -d -r rumba-updates/ gs://updates-stage-mdn/rumba-bcd-updates trigger-stage-rumba-update-if-new: name: Trigger rumba updates if new release.