Skip to content

Commit ae5e17c

Browse files
committed
update gha
1 parent b140e08 commit ae5e17c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ExportPluto.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515

1616

1717
- name: Install Julia
18-
uses: julia-actions/setup-julia@v1
18+
uses: julia-actions/setup-julia@v2
1919
with:
20-
version: 1.7
20+
version: "1.10"
2121

2222

2323
# We set up a folder that Pluto can use to cache exported notebooks. If the notebook file did not change, then Pluto can take the exported file from cache instead of running the notebook.
2424
- name: Set up notebook state cache
25-
uses: actions/cache@v3
25+
uses: actions/cache@v4
2626
with:
2727
path: pluto_state_cache
2828
key: ${{ runner.os }}-pluto_state_cache-v2-${{ hashFiles('**/Project.toml', '**/Manifest.toml', '.github/workflows/*' ) }}-${{ hashFiles('**/*jl') }}

.github/workflows/Test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
# continue-on-error: true
1919
strategy:
2020
matrix:
21-
julia-version: ['1.6', '1.7', '1']
21+
julia-version: ['1.6', '1']
2222
os: [ubuntu-latest]
2323

2424
steps:
2525
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2626
- uses: actions/checkout@v4
2727

28-
- uses: julia-actions/setup-julia@v1
28+
- uses: julia-actions/setup-julia@v2
2929
with:
3030
version: ${{ matrix.julia-version }}
3131
- uses: julia-actions/cache@v1

0 commit comments

Comments
 (0)