Skip to content

Commit

Permalink
updated actions/cache
Browse files Browse the repository at this point in the history
  • Loading branch information
stumitchell authored Feb 18, 2025
1 parent c6388d7 commit 2126148
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ jobs:
# All of the Git history is required for day8/lein-git-inject to determine the version string.
fetch-depth: 0
- name: Maven cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: /root/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('project.clj', '.github/workflows/**') }}
restore-keys: |
${{ runner.os }}-maven-
- name: npm cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/project.clj') }}-${{ hashFiles('**/deps.cljs') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Sample Project shadow-cljs compiler cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: examples/todomvc/.shadow-cljs
key: ${{ runner.os }}-shadow-cljs-${{ github.sha }}
Expand Down

0 comments on commit 2126148

Please sign in to comment.