From 8844af4877650aabf80d4e5cd3fba6901e8dce67 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 08:42:57 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Build.yml | 8 ++++---- .github/workflows/Publish.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 815ac93..d46ea89 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -55,7 +55,7 @@ jobs: dependency-graph: generate - name: Restore Kotlin Native Cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.konan key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle.kts', 'buildSrc') }} @@ -104,7 +104,7 @@ jobs: category: android-lint - name: Save Kotlin Native Cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: github.ref_name == 'main' with: path: ~/.konan @@ -139,7 +139,7 @@ jobs: dependency-graph: generate - name: Restore Kotlin Native Cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.konan key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle.kts', 'buildSrc') }} @@ -169,7 +169,7 @@ jobs: path: lint-outputs.tar.zst - name: Save Kotlin Native Cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: github.ref_name == 'main' with: path: ~/.konan diff --git a/.github/workflows/Publish.yml b/.github/workflows/Publish.yml index 7ff8c9b..05ecf5c 100644 --- a/.github/workflows/Publish.yml +++ b/.github/workflows/Publish.yml @@ -54,7 +54,7 @@ jobs: dependency-graph: generate - name: Restore Kotlin Native Cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.konan key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle.kts', 'buildSrc') }}