From 4719e0408fe62aed1ae5db44d1a0d015b61058a6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 12:43:31 +0000 Subject: [PATCH] :arrow_up: Updates actions/cache action to v4 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- .github/workflows/changelog.yml | 2 +- .github/workflows/preview.yml | 2 +- .github/workflows/release-semantic.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c679757..baa8856 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,7 +48,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 1a5d991..aecc4f9 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -20,7 +20,7 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-changelog-gem diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 12b3589..fa6b8bb 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -19,7 +19,7 @@ jobs: with: node-version: "12" - - uses: actions/cache@v2.1.4 + - uses: actions/cache@v4.1.2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release-semantic.yml b/.github/workflows/release-semantic.yml index 9459b0f..703a9d4 100644 --- a/.github/workflows/release-semantic.yml +++ b/.github/workflows/release-semantic.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v2 - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}