Skip to content

Commit 18bbb36

Browse files
authored
updated actions/cache
1 parent 54be72c commit 18bbb36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v1
1313
- name: Maven cache
14-
uses: actions/cache@v1
14+
uses: actions/cache@v4
1515
with:
1616
path: /root/.m2/repository
1717
key: ${{ runner.os }}-maven-${{ hashFiles('project.clj') }}
1818
restore-keys: |
1919
${{ runner.os }}-maven-
2020
- name: npm cache
21-
uses: actions/cache@v1
21+
uses: actions/cache@v4
2222
with:
2323
path: ~/.npm
2424
key: ${{ runner.os }}-npm-${{ hashFiles('project.clj') }}-${{ hashFiles('**/deps.cljs') }}
2525
restore-keys: |
2626
${{ runner.os }}-npm-
2727
- name: shadow-cljs compiler cache
28-
uses: actions/cache@v1
28+
uses: actions/cache@v4
2929
with:
3030
path: .shadow-cljs
3131
key: ${{ runner.os }}-shadow-cljs-${{ github.sha }}

0 commit comments

Comments
 (0)