From 0e48352e6df58da8653c48e09dfe3d843cef07f8 Mon Sep 17 00:00:00 2001 From: Mike Kruskal Date: Fri, 24 Feb 2023 09:14:11 -0800 Subject: [PATCH] Expand lifetime of repository cache. These are not growing fast at all, but are taking a long time to asymptotically fill out. PiperOrigin-RevId: 512086597 --- .github/workflows/clear_caches.yml | 4 ++-- objectivec/GPBStruct.pbobjc.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/clear_caches.yml b/.github/workflows/clear_caches.yml index 3ea213d21e..f7d7bcedf2 100644 --- a/.github/workflows/clear_caches.yml +++ b/.github/workflows/clear_caches.yml @@ -2,8 +2,8 @@ name: Clear expensive caches to prevent unbounded growth on: schedule: - # Run every 1st of the month at 10 AM UTC (2 AM PDT) - - cron: 0 10 1 * * + # Run every 4 months at 10 AM UTC (2 AM PDT) + - cron: 0 10 1 */4 * # manual workflow_dispatch: diff --git a/objectivec/GPBStruct.pbobjc.h b/objectivec/GPBStruct.pbobjc.h index 8f2f12c73b..b0cc299714 100644 --- a/objectivec/GPBStruct.pbobjc.h +++ b/objectivec/GPBStruct.pbobjc.h @@ -32,7 +32,7 @@ NS_ASSUME_NONNULL_BEGIN * `NullValue` is a singleton enumeration to represent the null value for the * `Value` type union. * - * The JSON representation for `NullValue` is JSON `null`. + * The JSON representation for `NullValue` is JSON `null`. **/ typedef GPB_ENUM(GPBNullValue) { /**