Skip to content

Commit 0da7929

Browse files
committed
Fix
1 parent 2365a64 commit 0da7929

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/python-publish.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,18 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626
- name: Set up Python
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v5
2828
with:
29-
python-version: '3.7.17'
29+
python-version: '3.7'
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip
3333
pip install build
3434
- name: Build package
3535
run: python -m build
3636
- name: Publish package
37-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
37+
uses: pypa/gh-action-pypi-publish@release/v1
3838
with:
39-
user: __token__
4039
password: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)