From 368a6b07e6d331ee6c4f0e420764fe7e0a4ce44c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 May 2022 01:46:04 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 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...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 7b2c690..3b84991 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -23,14 +23,14 @@ jobs: id: yarn-cache-dir run: echo ::set-output name=CACHE_DIR::$(yarn cache dir) - name: Node.js yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.yarn-cache-dir.outputs.CACHE_DIR }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn - name: Node.js modules cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: modules-cache with: path: ${{ github.workspace }}/node_modules