Skip to content

Commit c6388d7

Browse files
authored
updated actions/cache
1 parent c8f0c42 commit c6388d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v1
1919
- name: Maven cache
20-
uses: actions/cache@v1
20+
uses: actions/cache@v4
2121
with:
2222
path: /root/.m2/repository
2323
key: ${{ runner.os }}-maven-${{ hashFiles('project.clj', '.github/workflows/**') }}
2424
restore-keys: |
2525
${{ runner.os }}-maven-
2626
- name: npm cache
27-
uses: actions/cache@v1
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.npm
3030
key: ${{ runner.os }}-npm-${{ hashFiles('**/project.clj') }}-${{ hashFiles('**/deps.cljs') }}
3131
restore-keys: |
3232
${{ runner.os }}-npm-
3333
- name: Sample Project shadow-cljs compiler cache
34-
uses: actions/cache@v1
34+
uses: actions/cache@v4
3535
with:
3636
path: examples/todomvc/.shadow-cljs
3737
key: ${{ runner.os }}-shadow-cljs-${{ github.sha }}
@@ -69,7 +69,7 @@ jobs:
6969
# All of the Git history is required for day8/lein-git-inject to determine the version string.
7070
fetch-depth: 0
7171
- name: Maven cache
72-
uses: actions/cache@v2
72+
uses: actions/cache@v4
7373
with:
7474
path: /root/.m2/repository
7575
key: ${{ runner.os }}-maven-${{ hashFiles('project.clj', '.github/workflows/**') }}

0 commit comments

Comments
 (0)