Skip to content

Commit 7e48151

Browse files
authored
Merge pull request #67 from noO0oOo0ob/bugfix/fix-python-version-in-publish
fix python version in publish
2 parents 1ef763d + 71f0beb commit 7e48151

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: Set up Node
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: '10'
2020
- name: Install npm Dependencies
@@ -24,9 +24,9 @@ jobs:
2424
npm run build
2525
cd ..
2626
- name: Set up Python
27-
uses: actions/setup-python@v1
27+
uses: actions/setup-python@v4
2828
with:
29-
python-version: '3.7'
29+
python-version: '3.9'
3030
- name: Install python dependencies
3131
run: |
3232
python -m pip install --upgrade pip

.github/workflows/unittest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- name: Set up Python
15-
uses: actions/setup-python@v1
15+
uses: actions/setup-python@v3
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- name: Install python dependencies

0 commit comments

Comments
 (0)