From ad51154d777ba890d642019958b6f8e8d77964e9 Mon Sep 17 00:00:00 2001 From: curfew-marathon Date: Sun, 5 Apr 2026 16:53:30 -0400 Subject: [PATCH] chore: upgrade gradle/actions to v6.1.0 with basic cache provider - Update all gradle/actions/setup-gradle and wrapper-validation references from v5.0.2 to v6.1.0 (SHA: 50e97c2cd7a37755bbfafc9c5b7cafaece252f6e) - Add cache-provider: basic to all setup-gradle steps to use the open-source basic cache provider instead of the default - Narrow dependabot ignore range for gradle/actions/setup-gradle from ">= 6.0.0, < 7.0.0" to ">= 6.0.0, < 6.1.0" so future v6.1.x+ updates are picked up automatically --- .github/dependabot.yaml | 2 +- .github/workflows/main.yaml | 22 +++++++++++++++++----- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 71a850d7..2c380a99 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -50,7 +50,7 @@ updates: interval: "monthly" ignore: - dependency-name: "gradle/actions/setup-gradle" - versions: [">= 6.0.0, < 7.0.0"] + versions: [">= 6.0.0, < 6.1.0"] groups: dependencies: patterns: diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 2584bcfc..9b5af25c 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -30,8 +30,12 @@ jobs: distribution: "temurin" cache: gradle + # Use the open-source basic cache provider - name: Set up Gradle - uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 + uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 + id: setup-gradle + with: + cache-provider: basic - name: Test and Build with Gradle run: ./gradlew build test-integration @@ -63,10 +67,14 @@ jobs: distribution: "temurin" - name: Validate Gradle wrapper - uses: gradle/actions/wrapper-validation@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 + uses: gradle/actions/wrapper-validation@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 + # Use the open-source basic cache provider - name: Setup Gradle - uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 + uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 + id: setup-gradle + with: + cache-provider: basic # Tasks created by https://github.com/gradle-nexus/publish-plugin - name: Publish package @@ -96,10 +104,14 @@ jobs: distribution: "temurin" - name: Validate Gradle wrapper - uses: gradle/actions/wrapper-validation@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 + uses: gradle/actions/wrapper-validation@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 + # Use the open-source basic cache provider - name: Setup Gradle - uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 + uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 + id: setup-gradle + with: + cache-provider: basic # Tasks created by https://docs.gradle.org/current/userguide/publishing_maven.html - name: Publish package