Skip to content

Commit

Permalink
ci: Bump julia-actions/cache from v1.4.1 to v2
Browse files Browse the repository at this point in the history
There was a bug in julia-actions/cache that prevented v1.5.1 from
running in jobs that run in containers.  This is fixed by
julia-actions/cache#105, which is included in
v2.0.0.
  • Loading branch information
musoke committed May 6, 2024
1 parent e8fdfa8 commit a529f03
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
# Limit runtime to preserve Wolfram Service Credits
timeout-minutes: 10
steps:
- name: Install curl
# julia-actions/cache depends on dcarbone/install-jq-action, which requires curl
run: apt-get update && apt-get install -y curl
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
Expand All @@ -47,7 +50,7 @@ jobs:
apt-get update
apt-get install -y git
which git
- uses: julia-actions/cache@v1.4.1
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
Expand All @@ -71,11 +74,14 @@ jobs:
contents: write
statuses: write
steps:
- name: Install curl
# julia-actions/cache depends on dcarbone/install-jq-action, which requires curl
run: apt-get update && apt-get install -y curl
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- uses: julia-actions/cache@v1.4.1
- uses: julia-actions/cache@v2
- name: Configure doc environment
run: |
julia --project=docs/ -e '
Expand Down

0 comments on commit a529f03

Please sign in to comment.