File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 10
10
build :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
- run : cargo fmt --check
15
15
- run : cargo clippy --tests --all-features -- --deny warnings
16
16
- run : cargo test
Original file line number Diff line number Diff line change @@ -17,14 +17,15 @@ jobs:
17
17
name : github-pages
18
18
url : ${{ steps.deployment.outputs.page_url }}
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
- run : cargo doc
22
22
env :
23
23
RUSTDOCFLAGS : " --document-private-items --default-theme=ayu --deny warnings"
24
+ - run : rm target/doc/.lock
24
25
- run : cp docs/* target/doc
25
- - uses : actions/upload-pages-artifact@v1
26
+ - uses : actions/upload-pages-artifact@v3
26
27
with :
27
28
path : ' target/doc'
28
- - uses : actions/configure-pages@v3
29
- - uses : actions/deploy-pages@v1
29
+ - uses : actions/configure-pages@v4
30
+ - uses : actions/deploy-pages@v4
30
31
id : deployment
You can’t perform that action at this time.
0 commit comments