Skip to content

Commit e5cd7b5

Browse files
committed
Upgrade GitHub Actions cache action
1 parent 9b60027 commit e5cd7b5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/continuous-deployment-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
restore-keys: |
2121
${{ runner.os }}-maven-
2222
- name: npm cache
23-
uses: actions/cache@v1
23+
uses: actions/cache@v2
2424
with:
2525
path: ~/.npm
2626
key: ${{ runner.os }}-npm-${{ hashFiles('project.clj') }}-${{ hashFiles('**/deps.cljs') }}
2727
restore-keys: |
2828
${{ runner.os }}-npm-
2929
- name: shadow-cljs compiler cache
30-
uses: actions/cache@v1
30+
uses: actions/cache@v2
3131
with:
3232
path: .shadow-cljs
3333
key: ${{ runner.os }}-shadow-cljs-${{ github.sha }}
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
- uses: actions/checkout@v2
5656
- name: Maven cache
57-
uses: actions/cache@v1
57+
uses: actions/cache@v2
5858
with:
5959
path: /root/.m2/repository
6060
key: ${{ runner.os }}-maven-${{ hashFiles('project.clj') }}

.github/workflows/continuous-integration-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: Maven cache
13-
uses: actions/cache@v1
13+
uses: actions/cache@v2
1414
with:
1515
path: /root/.m2/repository
1616
key: ${{ runner.os }}-maven-${{ hashFiles('project.clj') }}
1717
restore-keys: |
1818
${{ runner.os }}-maven-
1919
- name: npm cache
20-
uses: actions/cache@v1
20+
uses: actions/cache@v2
2121
with:
2222
path: ~/.npm
2323
key: ${{ runner.os }}-npm-${{ hashFiles('project.clj') }}-${{ hashFiles('**/deps.cljs') }}
2424
restore-keys: |
2525
${{ runner.os }}-npm-
2626
- name: shadow-cljs compiler cache
27-
uses: actions/cache@v1
27+
uses: actions/cache@v2
2828
with:
2929
path: .shadow-cljs
3030
key: ${{ runner.os }}-shadow-cljs-${{ github.sha }}

0 commit comments

Comments
 (0)