Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/app-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
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.2
with:
path: ~/.cache/firebase/emulators
key: ${{ runner.os }}-firebase-${{ steps.cache-settings.outputs.firebase-tools }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/app-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -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.2
with:
path: ~/.cache/firebase/emulators
key: ${{ runner.os }}-firebase-${{ steps.cache-settings.outputs.firebase-tools }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
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.2
# with:
# path: docs/.cache
# key: ${{ runner.os }}-docs-build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
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.2
# with:
# path: docs/.cache
# key: ${{ runner.os }}-docs-build
Expand Down