From 145d7a673c9076bf8415d3708a2f89270169b6f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Dec 2022 14:00:54 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2.1.4 to 3.2.2 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.4 to 3.2.2. - [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.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/publish.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b529bb5..9231c64 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: caching node modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.2 with: path: node_modules key: ${{ runner.OS }}-build-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index abd69dc..0d44ba8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,7 +23,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: caching node modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.2 with: path: node_modules key: ${{ runner.OS }}-build-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} @@ -68,7 +68,7 @@ jobs: registry-url: https://registry.npmjs.org/ scope: '@gofunky' - name: caching node modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.2 with: path: node_modules key: ${{ runner.OS }}-build-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} @@ -105,7 +105,7 @@ jobs: registry-url: https://npm.pkg.github.com scope: '@gofunky' - name: caching node modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.2.2 with: path: node_modules key: ${{ runner.OS }}-build-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}