diff options
| author | 2024-11-20 01:17:40 -0500 | |
|---|---|---|
| committer | 2024-11-20 01:17:40 -0500 | |
| commit | 3e3ebe586385a83b10c8f1d0b9ba9b67c8b56d2f (patch) | |
| tree | 5682f748fc9867166043734aad44e1734d16abeb /.github/workflows/pypi-publish-release.yml | |
| parent | fa197fe27b8a03bbf4504476f842956ece2c76c9 (diff) | |
New upstream version 2.0.0.upstream/2.0.0
Diffstat (limited to '.github/workflows/pypi-publish-release.yml')
| -rw-r--r-- | .github/workflows/pypi-publish-release.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/pypi-publish-release.yml b/.github/workflows/pypi-publish-release.yml index 2071faa..5150277 100644 --- a/.github/workflows/pypi-publish-release.yml +++ b/.github/workflows/pypi-publish-release.yml @@ -10,12 +10,12 @@ jobs: name: Build distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 - - name: Set up Python 3.6 - uses: actions/setup-python@v2 + - name: Set up Python 3.9 + uses: actions/setup-python@v5.3.0 with: - python-version: 3.6 + python-version: 3.9 - name: Install pep517 run: >- @@ -34,7 +34,7 @@ jobs: . - name: Upload distribution artifact for other jobs - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: pkb_client_dist path: dist/ @@ -45,7 +45,7 @@ jobs: needs: build steps: - name: Download distribution from build job - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: pkb_client_dist path: dist/ |
