File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
13
13
steps :
14
- - uses : actions/checkout@v3.5.0
14
+ - uses : actions/checkout@v3
15
15
16
16
- name : Set up Python 3.8
17
- uses : actions/setup-python@v4.6.0
17
+ uses : actions/setup-python@v4
18
18
with :
19
19
python-version : 3.8
20
20
29
29
30
30
- name : Set up cache
31
31
id : cache
32
- uses : actions/cache@v3.3.1
32
+ uses : actions/cache@v3
33
33
with :
34
34
path : ./site
35
35
key : site-${{ hashFiles('docs/*') }}-${{ hashFiles('mkdocs.yml') }}-${{ hashFiles('**/poetry.lock') }}
46
46
47
47
- name : Deploy Docs
48
48
if : steps.cache.outputs.cache-hit != 'true'
49
- uses : peaceiris/actions-gh-pages@v3.9.3
49
+ uses : peaceiris/actions-gh-pages@v3
50
50
with :
51
51
github_token : ${{ secrets.GITHUB_TOKEN }}
52
52
publish_dir : ./site
Original file line number Diff line number Diff line change 9
9
publish :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3.5.0
12
+ - uses : actions/checkout@v3
13
13
14
14
- name : Get tag
15
15
id : tag
16
16
run : echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
17
17
18
- - uses : actions/setup-python@v4.6.0
18
+ - uses : actions/setup-python@v4
19
19
with :
20
20
python-version : 3.9
21
21
You can’t perform that action at this time.
0 commit comments