From e8f2dd3e42b9b7ade77dfafaeb6a692e4232eee2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Mar 2023 08:57:16 +0000 Subject: [PATCH] build(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/continuous-integration.yml | 8 ++++---- .github/workflows/release.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 007e6c5..c453bca 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -36,7 +36,7 @@ jobs: - name: Cache node_modules id: cache-node_modules - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.3.0 with: path: node_modules key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }} @@ -74,7 +74,7 @@ jobs: - name: Cache node_modules id: cache-node_modules - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.3.0 with: path: node_modules key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }} @@ -116,7 +116,7 @@ jobs: - name: Cache node_modules id: cache-node_modules - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.3.0 with: path: node_modules key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }} @@ -126,7 +126,7 @@ jobs: - name: Cache next id: cache-next - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.3.0 with: path: ${{ github.workspace }}/.next/cache key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2cc82ae..3339e48 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: - name: Cache Docker layers - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.3.0 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }}