From 884b7f1312053d11c56d48b819550f4b9c179568 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 14:58:21 -0800 Subject: [PATCH] Bump actions/cache from 3 to 4 (#840) Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/canary.yml | 6 +++--- .github/workflows/docker-build-lambda-soak.yml | 2 +- .github/workflows/main-build-java.yml | 2 +- .github/workflows/main-build-python.yml | 2 +- .github/workflows/main-build.yml | 2 +- .github/workflows/pr-build.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- .github/workflows/soaking.yml | 6 +++--- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index fbcfd40d..43fbf21e 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -75,7 +75,7 @@ jobs: distribution: corretto java-version: '17' - name: Cache (Java) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'java' }} with: path: | @@ -90,7 +90,7 @@ jobs: with: node-version: '16' - name: Cache (NodeJS) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'nodejs' }} with: path: | @@ -104,7 +104,7 @@ jobs: with: python-version: '3.x' - name: Cache (Python) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'python' }} with: path: | diff --git a/.github/workflows/docker-build-lambda-soak.yml b/.github/workflows/docker-build-lambda-soak.yml index 1b4814a9..ed59bd58 100644 --- a/.github/workflows/docker-build-lambda-soak.yml +++ b/.github/workflows/docker-build-lambda-soak.yml @@ -27,7 +27,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Cache Docker layers - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/main-build-java.yml b/.github/workflows/main-build-java.yml index 58b0f987..99570368 100644 --- a/.github/workflows/main-build-java.yml +++ b/.github/workflows/main-build-java.yml @@ -92,7 +92,7 @@ jobs: distribution: corretto java-version: '17' - name: Cache (Java) - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/go/pkg/mod diff --git a/.github/workflows/main-build-python.yml b/.github/workflows/main-build-python.yml index 519d60e8..e3f72d2b 100644 --- a/.github/workflows/main-build-python.yml +++ b/.github/workflows/main-build-python.yml @@ -36,7 +36,7 @@ jobs: with: python-version: '3.x' - name: Cache (Python) - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/go/pkg/mod diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index 63714a73..60ef4647 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -46,7 +46,7 @@ jobs: with: node-version: '16' - name: Cache (NodeJS) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'nodejs' }} with: path: | diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 48abc629..cb356e2a 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -32,7 +32,7 @@ jobs: distribution: corretto java-version: '17' - name: Cache (Java) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'java' }} with: path: | @@ -47,7 +47,7 @@ jobs: with: node-version: '16' - name: Cache (NodeJS) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'nodejs' }} with: path: | @@ -61,7 +61,7 @@ jobs: with: python-version: '3.x' - name: Cache (Python) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'python' }} with: path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1cd3eeda..13bfab0a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -220,7 +220,7 @@ jobs: distribution: corretto java-version: '17' - name: Cache (Java) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ env.TEST_LANGUAGE == 'java' }} with: path: | @@ -235,7 +235,7 @@ jobs: with: node-version: '16' - name: Cache (NodeJS) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ env.TEST_LANGUAGE == 'nodejs' }} with: path: | @@ -249,7 +249,7 @@ jobs: with: python-version: '3.x' - name: Cache (Python) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ env.TEST_LANGUAGE == 'python' }} with: path: | diff --git a/.github/workflows/soaking.yml b/.github/workflows/soaking.yml index 76013cb3..62b51b5b 100644 --- a/.github/workflows/soaking.yml +++ b/.github/workflows/soaking.yml @@ -75,7 +75,7 @@ jobs: distribution: corretto java-version: '17' - name: Cache (Java) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'java' }} with: path: | @@ -100,7 +100,7 @@ jobs: with: node-version: '16' - name: Cache (NodeJS) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'nodejs' }} with: path: | @@ -114,7 +114,7 @@ jobs: with: python-version: '3.x' - name: Cache (Python) - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ matrix.language == 'python' }} with: path: |