Skip to content

Commit

Permalink
change cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
lichye committed Feb 21, 2025
1 parent d8c1f73 commit 0189f8d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: Cache Z3
id: cache-z3
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: z3/
key: ${{ runner.os }}-z3-${{ hashFiles('get-z3-linux.sh') }}-1
Expand All @@ -35,7 +35,7 @@ jobs:

- name: Cache CVC5
id: cache-cvc5
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: cvc5/
key: ${{ runner.os }}-cvc5-${{ hashFiles('get-cvc5-linux.sh') }}-1
Expand All @@ -54,7 +54,7 @@ jobs:

# - name: Cache Delphi
# id: cache-delphi
# uses: actions/cache@v1
# uses: actions/cache@v4
# with:
# path: delphi/
# key: ${{ runner.os }}-delphi-${{ hashFiles('get-delphi-linux.sh') }}-1
Expand All @@ -79,13 +79,13 @@ jobs:
java-version: 11

- name: Cache SBT ivy cache
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.ivy2/cache
key: ${{ runner.os }}-sbt-ivy-cache-${{ hashFiles('**/build.sbt') }}

- name: Cache SBT
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
Expand All @@ -110,7 +110,7 @@ jobs:

- name: Cache Z3
id: cache-z3
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: z3/
key: ${{ runner.os }}-z3-${{ hashFiles('get-z3-macos.sh') }}-1
Expand All @@ -133,7 +133,7 @@ jobs:

- name: Cache CVC5
id: cache-cvc5
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: cvc5/
key: ${{ runner.os }}-cvc5-${{ hashFiles('get-cvc5-macos.sh') }}-1
Expand All @@ -152,7 +152,7 @@ jobs:

# - name: Cache delphi
# id: cache-delphi
# uses: actions/cache@v1
# uses: actions/cache@v4
# with:
# path: delphi/
# key: ${{ runner.os }}-delphi-${{ hashFiles('get-delphi-macos.sh') }}-1
Expand Down

0 comments on commit 0189f8d

Please sign in to comment.