Skip to content

Commit f12e1dc

Browse files
committed
Update build yaml
1 parent 1576970 commit f12e1dc

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/Documentation.yaml

+8-4
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,19 @@ on:
1010
jobs:
1111
build:
1212
permissions:
13+
actions: write
1314
contents: write
15+
pull-requests: read
16+
statuses: write
1417
runs-on: ubuntu-latest
1518
steps:
16-
- uses: actions/checkout@v2
17-
- uses: julia-actions/setup-julia@v1
19+
- uses: actions/checkout@v4
20+
- uses: julia-actions/setup-julia@v2
1821
with:
19-
version: '1.9'
22+
version: '1.10'
23+
- uses: julia-actions/cache@v2
2024
- name: Install dependencies
21-
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()'
2226
- name: Build and deploy
2327
env:
2428
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token

0 commit comments

Comments
 (0)