From 17e096e93e97f6c2baea728b4c1003bec3dc3724 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 09:57:46 +0000 Subject: [PATCH 1/2] Update gradle/actions action to v6 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f340860..bb0bdda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: sudo udevadm trigger --name-match=kvm - name: Set up Gradle - uses: gradle/actions/setup-gradle@v5 + uses: gradle/actions/setup-gradle@v6 - name: Build run: ./gradlew build --stacktrace diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a55eb1a..cf6694b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: java-version: 25 - name: Set up Gradle - uses: gradle/actions/setup-gradle@v5 + uses: gradle/actions/setup-gradle@v6 - name: Assemble for release run: ./gradlew assembleRelease --stacktrace --no-configuration-cache From da39ecc3ffef07e9ee21939ffb434776838d7b6f Mon Sep 17 00:00:00 2001 From: Drew Hamilton Date: Wed, 13 May 2026 11:24:24 -0500 Subject: [PATCH 2/2] Use basic cache provider with new Gradle action --- .github/workflows/ci.yml | 2 ++ .github/workflows/release.yml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb0bdda..0612e9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,8 @@ jobs: - name: Set up Gradle uses: gradle/actions/setup-gradle@v6 + with: + cache-provider: basic - name: Build run: ./gradlew build --stacktrace diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cf6694b..cb81176 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,9 +21,12 @@ jobs: - name: Set up Gradle uses: gradle/actions/setup-gradle@v6 + with: + cache-provider: basic - name: Assemble for release run: ./gradlew assembleRelease --stacktrace --no-configuration-cache + - name: Publish run: ./gradlew publish --stacktrace --no-configuration-cache env: