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 2 to 3.0.11 #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
cat 'cabal.project.freeze'

- name: Hackage sources cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: hackage-sources
with:
Expand All @@ -105,7 +105,7 @@ jobs:

- name: Compiled deps cache
id: compiled-deps
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: compiled-deps
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/caching.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
# so having a shared pool here that depends only on Hackage pin & does not depend on `base` is "good enough"
# & used such because it preserves 10% of a global cache storage pool.
- name: Hackage sources cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: hackage-sources
with:
Expand All @@ -169,7 +169,7 @@ jobs:

- name: Compiled deps cache
id: compiled-deps
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: compiled-deps
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
echo "INDEX_STATE=$INDEX_STATE1" >> $GITHUB_ENV

- name: Hackage sources cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: hackage-sources
with:
Expand All @@ -82,7 +82,7 @@ jobs:
restore-keys: ${{ env.cache-name }}-

- name: Compiled deps cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: compiled-deps
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
cat 'cabal.project.freeze'

- name: Hackage sources cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: hackage-sources
with:
Expand All @@ -166,7 +166,7 @@ jobs:

- name: Compiled deps cache
id: compiled-deps
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: compiled-deps
with:
Expand All @@ -188,7 +188,7 @@ jobs:
echo "TEST_OPTS=-j1 --rerun-update --rerun-filter failures,exceptions" >> $GITHUB_ENV

- name: Cache test log bewteen attempts of the same run
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: cache-test-log
with:
Expand Down