diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 3a5e30e..4cb0b45 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.2 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.2 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..0268fed 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.2 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.2 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..3165b2c 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.2 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.2 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..9a17b55 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.2 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.2 if: steps.cache-modules.outputs.cache-hit != 'true' with: path: ${{ steps.yarn-cache.outputs.dir }}