From 754207bdb1a560aeefb294a8866c639b962a062f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jan 2023 14:00:53 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2.1.4 to 3.2.3 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.4 to 3.2.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.1.4...v3.2.3) --- 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..3f9d382 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.3 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..042ba40 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.3 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.3 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.3 with: path: node_modules key: ${{ runner.OS }}-build-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}