From 48ccc1f9fe696e867260d2ccdd51153b1927280a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 06:35:08 +0000 Subject: [PATCH 1/2] Bump gradle/actions from 5 to 6 Bumps [gradle/actions](https://github.com/gradle/actions) from 5 to 6. - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/v5...v6) --- updated-dependencies: - dependency-name: gradle/actions dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/publish.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 550d8c4..2f90bd4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: distribution: temurin java-version: 17 - name: Setup Gradle - uses: gradle/actions/setup-gradle@v5 + uses: gradle/actions/setup-gradle@v6 with: cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }} cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a39ec61..9f449ea 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -34,7 +34,7 @@ jobs: distribution: temurin java-version: 17 - name: Setup Gradle - uses: gradle/actions/setup-gradle@v5 + uses: gradle/actions/setup-gradle@v6 with: cache-read-only: true cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f32c73c..808585f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,7 +40,7 @@ jobs: distribution: temurin java-version: 17 - name: Setup Gradle - uses: gradle/actions/setup-gradle@v5 + uses: gradle/actions/setup-gradle@v6 with: cache-read-only: true cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} From 7a14f893cebea16742c879d4770f1a209f69d0ed Mon Sep 17 00:00:00 2001 From: Mattias Buelens Date: Tue, 24 Mar 2026 11:16:58 +0100 Subject: [PATCH 2/2] Disable Gradle caching --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/docs.yml | 6 +++--- .github/workflows/publish.yml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f90bd4..93919fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,9 +25,9 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v6 with: - cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }} - cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} + # https://github.com/gradle/actions/blob/v6.0.0/README.md#licensing-notice + cache-disabled: true - name: Run tests - run: ./gradlew test --configuration-cache + run: ./gradlew test - name: Assemble - run: ./gradlew assembleRelease --configuration-cache + run: ./gradlew assembleRelease diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9f449ea..59f8ee5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -36,10 +36,10 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v6 with: - cache-read-only: true - cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} + # https://github.com/gradle/actions/blob/v6.0.0/README.md#licensing-notice + cache-disabled: true - name: Build API documentation with Dokka - run: ./gradlew ui:dokkaGeneratePublicationHtml --configuration-cache + run: ./gradlew ui:dokkaGeneratePublicationHtml - name: Build with Jekyll uses: actions/jekyll-build-pages@v1 with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 808585f..ed1fb0d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -42,10 +42,10 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v6 with: - cache-read-only: true - cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} + # https://github.com/gradle/actions/blob/v6.0.0/README.md#licensing-notice + cache-disabled: true - name: Publish package - run: ./gradlew publish --configuration-cache + run: ./gradlew publish env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} REPOSILITE_USERNAME: ${{ secrets.REPOSILITE_USERNAME }}