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') }}