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 julia-actions/cache from v1.4.1 to v2 #30

Merged
merged 2 commits into from
May 6, 2024
Merged
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
9 changes: 8 additions & 1 deletion .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,10 +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@v2
- name: Configure doc environment
run: |
julia --project=docs/ -e '
Expand Down
Loading