We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1576970 commit f12e1dcCopy full SHA for f12e1dc
.github/workflows/Documentation.yaml
@@ -10,15 +10,19 @@ on:
10
jobs:
11
build:
12
permissions:
13
+ actions: write
14
contents: write
15
+ pull-requests: read
16
+ statuses: write
17
runs-on: ubuntu-latest
18
steps:
- - uses: actions/checkout@v2
- - uses: julia-actions/setup-julia@v1
19
+ - uses: actions/checkout@v4
20
+ - uses: julia-actions/setup-julia@v2
21
with:
- version: '1.9'
22
+ version: '1.10'
23
+ - uses: julia-actions/cache@v2
24
- name: Install dependencies
- run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(;verbose=true)'
25
+ run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
26
- name: Build and deploy
27
env:
28
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
0 commit comments