Skip to content

Commit

Permalink
Merge pull request #67 from noO0oOo0ob/bugfix/fix-python-version-in-p…
Browse files Browse the repository at this point in the history
…ublish

fix python version in publish
  • Loading branch information
noO0oOo0ob authored Jan 22, 2025
2 parents 1ef763d + 71f0beb commit 7e48151
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '10'
- name: Install npm Dependencies
Expand All @@ -24,9 +24,9 @@ jobs:
npm run build
cd ..
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: '3.9'
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
Expand Down

0 comments on commit 7e48151

Please sign in to comment.