File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,21 +22,21 @@ jobs:
22
22
BASE_SHA : ${{ github.event.pull_request.base.sha }}
23
23
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24
24
steps :
25
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout@v4
26
26
with :
27
27
# linkcheck needs the base commit.
28
28
fetch-depth : 0
29
29
30
30
- name : Cache binaries
31
31
id : mdbook-cache
32
- uses : actions/cache@v3
32
+ uses : actions/cache@v4
33
33
with :
34
34
path : |
35
35
~/.cargo/bin
36
36
key : ${{ runner.os }}-${{ env.MDBOOK_VERSION }}--${{ env.MDBOOK_LINKCHECK_VERSION }}--${{ env.MDBOOK_TOC_VERSION }}--${{ env.MDBOOK_MERMAID_VERSION }}
37
37
38
38
- name : Cache linkcheck
39
- uses : actions/cache@v3
39
+ uses : actions/cache@v4
40
40
with :
41
41
path : |
42
42
~/book/linkcheck
Original file line number Diff line number Diff line change 15
15
16
16
steps :
17
17
- name : Checkout repo
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
20
20
- name : Ensure Rust is up-to-date
21
21
run : |
27
27
cargo run -- ../../src/ > ../../date-check-output.txt
28
28
29
29
- name : Open issue
30
- uses : actions/github-script@v6
30
+ uses : actions/github-script@v7
31
31
with :
32
32
script : |
33
33
const fs = require('fs');
You can’t perform that action at this time.
0 commit comments