Skip to content

Commit

Permalink
Update GHA versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp committed Nov 24, 2022
1 parent 9931f5a commit 3629f26
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ExportPluto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3


- name: Install Julia
uses: julia-actions/setup-julia@v1
with:
version: 1.6
version: "1.8"


# 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@v2
uses: actions/cache@v3
with:
path: pluto_state_cache
key: ${{ runner.os }}-pluto_state_cache-v2-${{ hashFiles('**/Project.toml', '**/Manifest.toml', '.github/workflows/*' ) }}-${{ hashFiles('**/*jl') }}
Expand All @@ -35,8 +35,7 @@ jobs:
run: julia -e 'using Pkg;
Pkg.activate(mktempdir());
Pkg.add([
Pkg.PackageSpec(name="PlutoSliderServer", version="0.2.6"),
Pkg.PackageSpec(name="Pluto", version="0.17.0"),
Pkg.PackageSpec(name="PlutoSliderServer", version="0.3"),
]);

import PlutoSliderServer;
Expand All @@ -47,7 +46,7 @@ jobs:


- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@releases/v3
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
Expand Down

0 comments on commit 3629f26

Please sign in to comment.