From c68996ec84780f14df29df33a0b6b990c1b1a66b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 02:07:18 +0000 Subject: [PATCH] Bump actions/cache from 3.3.2 to 4.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.0. - [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/v3.3.2...v4.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- .github/workflows/verify_plugin.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff4e05a..c9f3058 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,7 +58,7 @@ jobs: # Cache Gradle dependencies - name: Setup Gradle Dependencies Cache - uses: actions/cache/save@v3.3.2 + uses: actions/cache/save@v4.0.0 with: path: | ~/.gradle/caches @@ -85,7 +85,7 @@ jobs: # Cache Gradle Dependencies - name: Setup Gradle Dependencies Cache - uses: actions/cache/restore@v3.3.2 + uses: actions/cache/restore@v4.0.0 with: path: | ~/.gradle/caches @@ -116,7 +116,7 @@ jobs: # Cache Plugin distribution - name: Setup Plugin distribution Cache - uses: actions/cache/save@v3.3.2 + uses: actions/cache/save@v4.0.0 with: path: ./build/distributions key: ${{ runner.os }}-gradle-distribution-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} @@ -133,7 +133,7 @@ jobs: # Cache Plugin distribution - name: Setup Plugin distribution Cache - uses: actions/cache/restore@v3.3.2 + uses: actions/cache/restore@v4.0.0 with: path: ./build/distributions key: ${{ runner.os }}-gradle-distribution-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} diff --git a/.github/workflows/verify_plugin.yml b/.github/workflows/verify_plugin.yml index 07dd3e4..a12ce9f 100644 --- a/.github/workflows/verify_plugin.yml +++ b/.github/workflows/verify_plugin.yml @@ -28,7 +28,7 @@ jobs: # Cache Gradle dependencies - name: Setup Gradle Dependencies Cache - uses: actions/cache/save@v3.3.2 + uses: actions/cache/save@v4.0.0 with: path: | ~/.gradle/caches @@ -37,7 +37,7 @@ jobs: # Cache Plugin distribution - name: Setup Plugin distribution Cache - uses: actions/cache/save@v3.3.2 + uses: actions/cache/save@v4.0.0 with: path: ./build/distributions key: ${{ runner.os }}-gradle-distribution-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} @@ -101,7 +101,7 @@ jobs: # Cache Gradle Dependencies - name: Setup Gradle Dependencies Cache - uses: actions/cache/restore@v3.3.2 + uses: actions/cache/restore@v4.0.0 with: path: | ~/.gradle/caches @@ -110,7 +110,7 @@ jobs: # Cache Plugin distribution - name: Setup Plugin distribution Cache - uses: actions/cache/restore@v3.3.2 + uses: actions/cache/restore@v4.0.0 with: path: ./build/distributions key: ${{ runner.os }}-gradle-distribution-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}