From f9da940389671e9fb940bc17ef5a4407629b8e8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Jan 2023 21:00:35 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2.1.4 to 3.2.3 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.4 to 3.2.3. - [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/v2.1.4...v3.2.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/chromatic.yml | 4 ++-- .github/workflows/continous_delivery.yml | 4 ++-- .github/workflows/continous_integration.yml | 4 ++-- .github/workflows/docs-check.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 3a5e30e..4263a65 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -21,7 +21,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: 'Use cached node_modules' id: cache-modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.3 with: path: '**/node_modules' key: ${{ runner.os }}-v${{ matrix.node-version }}-node_modules-${{ hashFiles('yarn.lock', '**/package.json') }} @@ -30,7 +30,7 @@ jobs: if: steps.cache-modules.outputs.cache-hit != 'true' run: echo "::set-output name=dir::$(yarn cache dir)" - name: 'Cache global yarn cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.3 if: steps.cache-modules.outputs.cache-hit != 'true' with: path: ${{ steps.yarn-cache.outputs.dir }} diff --git a/.github/workflows/continous_delivery.yml b/.github/workflows/continous_delivery.yml index ab5401d..3b6cca2 100644 --- a/.github/workflows/continous_delivery.yml +++ b/.github/workflows/continous_delivery.yml @@ -26,7 +26,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: 'Use cached node_modules' id: cache-modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.3 with: path: '**/node_modules' key: ${{ runner.os }}-v${{ matrix.node-version }}-node_modules-${{ hashFiles('yarn.lock', '**/package.json') }} @@ -35,7 +35,7 @@ jobs: if: steps.cache-modules.outputs.cache-hit != 'true' run: echo "::set-output name=dir::$(yarn cache dir)" - name: 'Cache global yarn cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.3 if: steps.cache-modules.outputs.cache-hit != 'true' with: path: ${{ steps.yarn-cache.outputs.dir }} diff --git a/.github/workflows/continous_integration.yml b/.github/workflows/continous_integration.yml index 44dccb4..9e0e0ef 100644 --- a/.github/workflows/continous_integration.yml +++ b/.github/workflows/continous_integration.yml @@ -18,7 +18,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: 'Use cached node_modules' id: cache-modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.3 with: path: '**/node_modules' key: ${{ runner.os }}-v${{ matrix.node-version }}-node_modules-${{ hashFiles('yarn.lock', '**/package.json') }} @@ -27,7 +27,7 @@ jobs: if: steps.cache-modules.outputs.cache-hit != 'true' run: echo "::set-output name=dir::$(yarn cache dir)" - name: 'Cache global yarn cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.3 if: steps.cache-modules.outputs.cache-hit != 'true' with: path: ${{ steps.yarn-cache.outputs.dir }} diff --git a/.github/workflows/docs-check.yml b/.github/workflows/docs-check.yml index 6c99975..3757b84 100644 --- a/.github/workflows/docs-check.yml +++ b/.github/workflows/docs-check.yml @@ -23,7 +23,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: 'Use cached node_modules' id: cache-modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.3 with: path: '**/node_modules' key: ${{ runner.os }}-v${{ matrix.node-version }}-node_modules-${{ hashFiles('yarn.lock', '**/package.json') }} @@ -32,7 +32,7 @@ jobs: if: steps.cache-modules.outputs.cache-hit != 'true' run: echo "::set-output name=dir::$(yarn cache dir)" - name: 'Cache global yarn cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.3 if: steps.cache-modules.outputs.cache-hit != 'true' with: path: ${{ steps.yarn-cache.outputs.dir }}