Skip to content

Commit

Permalink
Merge pull request #428 from morpho-org/test/update-ci
Browse files Browse the repository at this point in the history
Update CI to avoid cache failures
  • Loading branch information
MerlinEgalite authored Sep 26, 2024
2 parents cc6b016 + 250b866 commit 955494d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
- uses: ./.github/actions/install

- name: Restore forge compilation cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
cache
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:

steps:
- name: Install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/foundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
FOUNDRY_PROFILE: test

- name: Save forge compilation cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: |
cache
out
key: forge-${{ github.ref_name }}
key: forge-${{ github.ref_name }}-${{ github.run_id }}

test:
needs: build-no-ir
Expand Down

0 comments on commit 955494d

Please sign in to comment.