Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/cache from 3 to 4 #1634

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
fetch-depth: 0
- name: Scala caches
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.sbt
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
with:
fetch-depth: 0
- name: Scala caches
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.sbt
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
distribution: temurin

- name: Mount caches
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.sbt
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/cache@v4
id: conformance-cache
with:
key: conformance-${{ runner.os }}-${{hashFiles('conformance/build_test_runner.sh')}}
Expand All @@ -56,7 +56,7 @@ jobs:
# Build conformance_test_runner on a cache miss
- uses: bazelbuild/setup-bazelisk@v2
if: steps.conformance-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v3
- uses: actions/cache@v4
if: steps.conformance-cache.outputs.cache-hit != 'true'
with:
path: |
Expand All @@ -65,7 +65,7 @@ jobs:
- run: conformance/build_test_runner.sh
if: steps.conformance-cache.outputs.cache-hit != 'true'

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
~/.sbt
Expand Down