Skip to content

Commit

Permalink
Update actions/cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Jan 28, 2025
1 parent ffe96c1 commit 7a3fbf9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
otp-version: "26"
elixir-version: "1.15.4"
- name: Cache Elixir dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
app/deps
Expand All @@ -30,7 +30,7 @@ jobs:
${{ runner.os }}-hex-v6-${{ hashFiles('app/mix.lock') }}
${{ runner.os }}-hex-v6-
- name: Cache Elixir build
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
app/_build
Expand All @@ -40,7 +40,7 @@ jobs:
${{ runner.os }}-hex-v6-${{ hashFiles('app/mix.lock') }}
${{ runner.os }}-hex-v6-
- name: Cache JS dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
app/assets/node_modules
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
with:
node-version-file: ./.tool-versions
- name: Cache Elixir dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
app/deps
Expand All @@ -85,7 +85,7 @@ jobs:
${{ runner.os }}-hex-v6-${{ hashFiles('app/mix.lock') }}
${{ runner.os }}-hex-v6-
- name: Cache Elixir build
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
app/_build
Expand All @@ -95,7 +95,7 @@ jobs:
${{ runner.os }}-hex-v6-${{ hashFiles('app/mix.lock') }}
${{ runner.os }}-hex-v6-
- name: Cache JS dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
app/assets/node_modules
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
perl Makefile.PL && \
sudo make install
- name: Cache Elixir dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
app/deps
Expand All @@ -201,7 +201,7 @@ jobs:
${{ runner.os }}-hex-v6-${{ hashFiles('app/mix.lock') }}
${{ runner.os }}-hex-v6-
- name: Cache Elixir build
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
app/_build
Expand All @@ -211,7 +211,7 @@ jobs:
${{ runner.os }}-hex-v6-${{ hashFiles('app/mix.lock') }}
${{ runner.os }}-hex-v6-
- name: Cache JS dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
app/assets/node_modules
Expand Down

0 comments on commit 7a3fbf9

Please sign in to comment.