diff options
author | Roberto Bertó <roberto.berto@gmail.com> | 2024-03-10 13:42:28 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-10 13:42:28 -0300 |
commit | bf3d1770decc1810fdb69d4d32b2a9e89f6073b7 (patch) | |
tree | 22b911fce7b6b81546037a94495fe2bf83453080 | |
parent | 07c3c2e3b1c5c4b296cf5abc462bac3b8384869b (diff) | |
download | pyvyos-bf3d1770decc1810fdb69d4d32b2a9e89f6073b7.tar.gz pyvyos-bf3d1770decc1810fdb69d4d32b2a9e89f6073b7.zip |
updated actions to use latest versions
-rw-r--r-- | .github/workflows/python-publish.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index bdaab28..a5d4550 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -21,11 +21,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4.1.1 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5.0.0 with: - python-version: '3.x' + python-version: "3.12.2" - name: Install dependencies run: | python -m pip install --upgrade pip @@ -33,7 +33,7 @@ jobs: - name: Build package run: python -m build - name: Publish package - uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 + uses: pypa/gh-action-pypi-publish@v1.8.14 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} |