Skip to content

Commit 2fe371d

Browse files
committed
remove subversion
1 parent 9d9b961 commit 2fe371d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/docs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3.5.0
14+
- uses: actions/checkout@v3
1515

1616
- name: Set up Python 3.8
17-
uses: actions/setup-python@v4.6.0
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: 3.8
2020

@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Set up cache
3131
id: cache
32-
uses: actions/cache@v3.3.1
32+
uses: actions/cache@v3
3333
with:
3434
path: ./site
3535
key: site-${{ hashFiles('docs/*') }}-${{ hashFiles('mkdocs.yml') }}-${{ hashFiles('**/poetry.lock') }}
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: Deploy Docs
4848
if: steps.cache.outputs.cache-hit != 'true'
49-
uses: peaceiris/actions-gh-pages@v3.9.3
49+
uses: peaceiris/actions-gh-pages@v3
5050
with:
5151
github_token: ${{ secrets.GITHUB_TOKEN }}
5252
publish_dir: ./site

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
publish:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3.5.0
12+
- uses: actions/checkout@v3
1313

1414
- name: Get tag
1515
id: tag
1616
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
1717

18-
- uses: actions/setup-python@v4.6.0
18+
- uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.9
2121

0 commit comments

Comments
 (0)