From fe15450901320547528570ff855820e371bac878 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Mar 2023 02:57:17 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 2.1.6 to 3.3.0 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.3.0. - [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.6...v3.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fba11fd..f496805 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,7 +40,7 @@ jobs: # with: # go-version: ${{ steps.gvm.outputs.GO_VERSION }} # - name: Restore go cache - # uses: actions/cache@v2.1.6 + # uses: actions/cache@v3.3.0 # with: # path: ~/go/pkg/mod # key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -68,13 +68,13 @@ jobs: with: node-version: ${{ steps.nvm.outputs.NODE_VERSION }} - name: Restore go cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.3.0 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-go- - name: Restore node cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.3.0 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}