Skip to content

Commit

Permalink
Upgrade Julia to 1.11 (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp authored Oct 11, 2024
1 parent b457a80 commit 72b0f30
Show file tree
Hide file tree
Showing 5 changed files with 180 additions and 128 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,27 @@ concurrency:

jobs:
build-and-deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4


- name: Install Julia
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@v2
with:
# note: this version should match the version in the other actions in this repo
version: "1.6"
version: "1.11"

- name: Cache Julia artifacts & such
uses: julia-actions/cache@v1
uses: julia-actions/cache@v2
with:
cache-registries: "true"


# 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.
- name: Set up notebook state cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: pluto_state_cache
key: ${{ runner.os }}-pluto_state_cache-v3-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/KeepCacheFresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up notebook state cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: pluto_state_cache
key: ${{ runner.os }}-pluto_state_cache-v3-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}-${{ github.run_id }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/UpdatePluto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ jobs:
- uses: fregante/setup-git-user@v1

- name: Install Julia
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@v2
with:
version: "1.6"
# note: this version should match the version in the other actions in this repo
version: "1.11"

- name: Update Pkg environment
run: |
Expand Down
Loading

0 comments on commit 72b0f30

Please sign in to comment.