Skip to content

Commit 590133f

Browse files
committed
Bump actions version
1 parent ad781cf commit 590133f

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- run: cargo fmt --check
1515
- run: cargo clippy --tests --all-features -- --deny warnings
1616
- run: cargo test

.github/workflows/docs.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ jobs:
1717
name: github-pages
1818
url: ${{ steps.deployment.outputs.page_url }}
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- run: cargo doc
2222
env:
2323
RUSTDOCFLAGS: "--document-private-items --default-theme=ayu --deny warnings"
24+
- run: rm target/doc/.lock
2425
- run: cp docs/* target/doc
25-
- uses: actions/upload-pages-artifact@v1
26+
- uses: actions/upload-pages-artifact@v3
2627
with:
2728
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
3031
id: deployment

0 commit comments

Comments
 (0)