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 2e9374f commit 8a4a8a8Copy full SHA for 8a4a8a8
.github/workflows/Documenter.yml
@@ -9,10 +9,14 @@ jobs:
9
Documenter:
10
name: Documentation
11
runs-on: ubuntu-latest
12
+ permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
13
+ actions: write
14
+ contents: read
15
steps:
- - uses: actions/checkout@v2
- - uses: julia-actions/julia-buildpkg@latest
- - uses: julia-actions/julia-docdeploy@latest
16
+ - uses: actions/checkout@v4
17
+ - uses: julia-actions/cache@v2
18
+ - uses: julia-actions/julia-buildpkg@v1
19
+ - uses: julia-actions/julia-docdeploy@v1
20
env:
21
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
0 commit comments