Skip to content

Commit bc4bacb

Browse files
Revert "feat: update github workflow actions"
This reverts commit 7234936.
1 parent 3cb1f73 commit bc4bacb

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/bumpversion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: "Bump version and create changelog with commitizen"
1313
steps:
1414
- name: Check out
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v2
1616
with:
1717
fetch-depth: 0
1818
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'

.github/workflows/docspublish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
publish-documentation:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v2
1313
with:
1414
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
1515
fetch-depth: 0
1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v1
1818
with:
1919
python-version: '3.x'
2020
- name: Install dependencies
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
python -m mkdocs build
2828
- name: Push doc to Github Page
29-
uses: peaceiris/actions-gh-pages@v3.9.0
29+
uses: peaceiris/actions-gh-pages@v2
3030
env:
3131
PERSONAL_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
3232
PUBLISH_BRANCH: gh-pages

.github/workflows/homebrewpublish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v2
1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v1
1818
with:
1919
python-version: '3.x'
2020
- name: Install dependencies

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
python-check:
77
strategy:
88
matrix:
9-
python-version: ["3.7", "3.8", "3.9", "3.10"]
9+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1010
platform: [ubuntu-latest, macos-latest, windows-latest]
1111
runs-on: ${{ matrix.platform }}
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v2
1414
with:
1515
fetch-depth: 0
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v2
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies
@@ -30,7 +30,7 @@ jobs:
3030
shell: bash
3131
- name: Upload coverage to Codecov
3232
if: runner.os == 'Linux'
33-
uses: codecov/codecov-action@v3.1.1
33+
uses: codecov/codecov-action@v1.0.3
3434
with:
3535
token: ${{secrets.CODECOV_TOKEN}}
3636
file: ./coverage.xml

.github/workflows/pythonpublish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v2
1313
with:
1414
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
1515
fetch-depth: 0
1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v1
1818
with:
1919
python-version: '3.x'
2020
- name: Install dependencies

0 commit comments

Comments
 (0)