From 99a2b8138a4d5b8c055fe0e9223c1dc101c24f6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Dec 2022 10:00:34 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2.1.6 to 3.2.1 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.1. - [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.2.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/app-deploy.yml | 4 ++-- .github/workflows/app-verify.yml | 4 ++-- .github/workflows/docs-deploy.yml | 4 ++-- .github/workflows/docs-verify.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/app-deploy.yml b/.github/workflows/app-deploy.yml index d4540225..854b300a 100644 --- a/.github/workflows/app-deploy.yml +++ b/.github/workflows/app-deploy.yml @@ -34,13 +34,13 @@ jobs: echo "::set-output name=firebase-tools::$(yarn list -s --depth=0 --pattern firebase-tools | tail -n 1 | sed 's/.*@//g')" - name: Cache App Dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.1 with: path: ${{ steps.cache-settings.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} - name: Cache Firebase Emulator Binaries - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.1 with: path: ~/.cache/firebase/emulators key: ${{ runner.os }}-firebase-${{ steps.cache-settings.outputs.firebase-tools }} diff --git a/.github/workflows/app-verify.yml b/.github/workflows/app-verify.yml index 951cda4f..8fc5d291 100644 --- a/.github/workflows/app-verify.yml +++ b/.github/workflows/app-verify.yml @@ -35,7 +35,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache NPM Dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.1 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} @@ -158,7 +158,7 @@ jobs: echo "::set-output name=firebase-tools::$(yarn list -s --depth=0 --pattern firebase-tools | tail -n 1 | sed 's/.*@//g')" - name: Cache Firebase Emulator Binaries - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.1 with: path: ~/.cache/firebase/emulators key: ${{ runner.os }}-firebase-${{ steps.cache-settings.outputs.firebase-tools }} diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml index 17c56355..811cd930 100644 --- a/.github/workflows/docs-deploy.yml +++ b/.github/workflows/docs-deploy.yml @@ -33,14 +33,14 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.1 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-docs-yarn-${{ hashFiles('**/yarn.lock') }} # Removed due to causing failed builds # - name: Cache Gatsby Build - # uses: actions/cache@v2.1.6 + # uses: actions/cache@v3.2.1 # with: # path: docs/.cache # key: ${{ runner.os }}-docs-build diff --git a/.github/workflows/docs-verify.yml b/.github/workflows/docs-verify.yml index 0f2bb87d..00c4778c 100644 --- a/.github/workflows/docs-verify.yml +++ b/.github/workflows/docs-verify.yml @@ -30,14 +30,14 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.1 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-docs-${{ hashFiles('**/yarn.lock') }} # Removed due to causing failed builds # - name: Cache Gatsby Build - # uses: actions/cache@v2.1.6 + # uses: actions/cache@v3.2.1 # with: # path: docs/.cache # key: ${{ runner.os }}-docs-build