From 670468acc8d0a3fa4772e2baf9fe296f43c4d2bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Mar 2022 16:29:03 +0800 Subject: [PATCH] chore(deps): bump actions/cache from 2 to 3 (#90) Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/linter.yml | 2 +- .github/workflows/tester.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 4ae3419..ab9d644 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -12,7 +12,7 @@ jobs: with: node-version: '14.x' - name: Cache NPM dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: node_modules key: ${{ runner.OS }}-npm-cache diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 82dd61b..db46c4d 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -17,7 +17,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Cache NPM dependencies - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: node_modules key: ${{ runner.os }}-npm-cache @@ -41,7 +41,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Cache NPM dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: node_modules key: ${{ runner.os }}-npm-cache