Skip to content

Commit

Permalink
Update actions/cache to v3 in CI workflow
Browse files Browse the repository at this point in the history
- Replaced actions/cache@v2 with v3 to avoid deprecation warnings.
  • Loading branch information
bi262934 committed Jan 27, 2025
1 parent d632c6e commit c5b556e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
run: source .github/workflows/tools.sh && install_packages

- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-v2
key: ${{ runner.os }}-pip-v3
restore-keys: |
${{ runner.os }}-pip-
- name: Cache SBT
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.ivy2/cache
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Cache tools
id: tools
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/tools
Expand Down

0 comments on commit c5b556e

Please sign in to comment.