From 9b6834c20c783c8c8c9bdce5f0d93e921f841080 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Sep 2022 21:07:39 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2.1.4 to 3.0.9 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.4 to 3.0.9. - [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.0.9) --- 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..f7a5057 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.0.9 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.0.9 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..324070d 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.0.9 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.0.9 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..87dce96 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.0.9 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.0.9 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..268c312 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.0.9 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.0.9 if: steps.cache-modules.outputs.cache-hit != 'true' with: path: ${{ steps.yarn-cache.outputs.dir }}