Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ jobs:
mix local.rebar --force

- name: Cache npm
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('assets/package-lock.json') }}
restore-keys: ${{ runner.os }}-npm-

- name: Cache deps and _build
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: |
deps
Expand All @@ -81,7 +81,7 @@ jobs:
restore-keys: ${{ runner.os }}-mix-

- name: Cache dialyzer PLTs
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: priv/plts
key: ${{ runner.os }}-plt-${{ hashFiles('mix.lock') }}
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
mix local.rebar --force

- name: Cache npm
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('assets/package-lock.json') }}
Expand All @@ -167,7 +167,7 @@ jobs:
# Keyed on MIX_ENV so the dev build artefacts don't clobber the build
# job's test PLT/_build cache (different env, different compiled output).
- name: Cache deps and _build
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: |
deps
Expand All @@ -183,7 +183,7 @@ jobs:
working-directory: assets

- name: Cache Playwright browsers
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('assets/package-lock.json') }}
Expand Down
Loading