From 5ce55405b1503acb169b2089be19e0535c2b4a50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20D=C4=85browski?= Date: Tue, 11 Nov 2025 19:44:23 +0100 Subject: [PATCH 1/2] Disable GH workflows --- .github/workflows/branch-testing.yml | 41 ---------------------------- .github/workflows/lock.yml | 2 -- .github/workflows/testing.yml | 7 +---- 3 files changed, 1 insertion(+), 49 deletions(-) delete mode 100644 .github/workflows/branch-testing.yml diff --git a/.github/workflows/branch-testing.yml b/.github/workflows/branch-testing.yml deleted file mode 100644 index ece8ec4cd58..00000000000 --- a/.github/workflows/branch-testing.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: GitHub Actions Branch Testing - -on: - push: - branches: - - master - - 'v1.*' - schedule: - - cron: '54 19 * * SUN' # weekly at a "random" time - -permissions: - contents: read - -jobs: - arm64: - runs-on: ubuntu-24.04-arm - strategy: - matrix: - jre: [17] - fail-fast: false # Should swap to true if we grow a large matrix - - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 - with: - java-version: ${{ matrix.jre }} - distribution: 'temurin' - - - name: Gradle cache - uses: actions/cache@v4 - with: - path: | - ~/.gradle/caches - ~/.gradle/wrapper - key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} - restore-keys: | - ${{ runner.os }}-gradle- - - - name: Build - run: ./gradlew -Dorg.gradle.parallel=true -Dorg.gradle.jvmargs='-Xmx1g' -PskipAndroid=true -PskipCodegen=true -PerrorProne=false test - diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 3070a1a2f7c..790c7c11f70 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -2,8 +2,6 @@ name: 'Lock Threads' on: workflow_dispatch: - schedule: - - cron: '37 3 * * *' permissions: issues: write diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 4fe75b0be78..f23d025572e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -1,13 +1,8 @@ name: GitHub Actions Linux Testing on: - push: - branches: - - master - - 'v1.*' pull_request: - schedule: - - cron: '54 19 * * SUN' # weekly at a "random" time + workflow_dispatch: permissions: contents: read From abb2888aeb3f798a139bff72f65437dd150b3bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20D=C4=85browski?= Date: Fri, 13 Feb 2026 19:32:50 +0100 Subject: [PATCH 2/2] Upgrade gson to 2.13.2 --- MODULE.bazel | 2 +- gradle/libs.versions.toml | 2 +- repositories.bzl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 81d80ed7e1a..9a116946ad2 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -14,7 +14,7 @@ IO_GRPC_GRPC_JAVA_ARTIFACTS = [ "com.google.auto.value:auto-value-annotations:1.11.0", "com.google.auto.value:auto-value:1.11.0", "com.google.code.findbugs:jsr305:3.0.2", - "com.google.code.gson:gson:2.12.1", + "com.google.code.gson:gson:2.13.2", "com.google.errorprone:error_prone_annotations:2.45.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:33.5.0-android", diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 3806fa3404e..7bab4b59853 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -56,7 +56,7 @@ google-auth-oauth2Http = "com.google.auth:google-auth-library-oauth2-http:1.41.0 google-cloud-logging = "com.google.cloud:google-cloud-logging:3.23.9" # 2.13.0 requires error_prone_annotations:2.37.0, but we are stuck with 2.36.0 # checkForUpdates: gson:2.12.+ -gson = "com.google.code.gson:gson:2.12.1" +gson = "com.google.code.gson:gson:2.13.2" guava = "com.google.guava:guava:33.5.0-android" guava-betaChecker = "com.google.guava:guava-beta-checker:1.0" guava-testlib = "com.google.guava:guava-testlib:33.5.0-android" diff --git a/repositories.bzl b/repositories.bzl index c89e1bdff32..de0729c35ab 100644 --- a/repositories.bzl +++ b/repositories.bzl @@ -18,7 +18,7 @@ IO_GRPC_GRPC_JAVA_ARTIFACTS = [ "com.google.auto.value:auto-value-annotations:1.11.0", "com.google.auto.value:auto-value:1.11.0", "com.google.code.findbugs:jsr305:3.0.2", - "com.google.code.gson:gson:2.12.1", + "com.google.code.gson:gson:2.13.2", "com.google.errorprone:error_prone_annotations:2.45.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:33.5.0-android",