Skip to content
Snippets Groups Projects
Unverified Commit 717120cb authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

Upgrade `actions/cache` action to v4 (#38335)

parent 16fdd8ef
No related merge requests found
......@@ -29,7 +29,7 @@ runs:
run: echo "Commit message includes [ci nocache]; dependencies will NOT be cached"
shell: bash
- name: Get M2 cache
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ !contains(github.event.head_commit.message, '[ci nocache]') }}
with:
path: |
......
......@@ -13,7 +13,7 @@ runs:
run: echo "Commit message includes [ci nocache]; dependencies will NOT be cached"
shell: bash
- name: Get Cypress cache
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ !contains(github.event.head_commit.message, '[ci nocache]') }}
with:
path: ~/.cache/Cypress
......
......@@ -13,13 +13,13 @@ runs:
yarn cache clean
shell: bash
- name: Get M2 cache
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ !contains(github.event.head_commit.message, '[ci nocache]') }}
with:
path: ~/.m2
key: ${{ runner.os }}-cljs-${{ hashFiles('**/shadow-cljs.edn') }}
- name: Get node_modules cache
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ !contains(github.event.head_commit.message, '[ci nocache]') }}
with:
path: node_modules
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment