release CI: Update used actions (#2591)

Updates the used checkout, setup-python and gh-action-pypi-publish actions
This commit is contained in:
Ewout ter Hoeven
2022-10-13 17:07:10 +02:00
committed by GitHub
parent b25528b92d
commit d246ef0e6f
+3 -3
View File
@@ -12,10 +12,10 @@ jobs:
steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.x"
@@ -26,7 +26,7 @@ jobs:
twine check --strict dist/*
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}