From bed30fb1b9f01e06edd87f3d43fe93509c41217e Mon Sep 17 00:00:00 2001 From: Detlef Arend <79243976+detlefarend@users.noreply.github.com> Date: Tue, 10 Dec 2024 21:30:42 +0100 Subject: [PATCH] Update pypi_deploy.yml --- .github/workflows/pypi_deploy.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi_deploy.yml b/.github/workflows/pypi_deploy.yml index fe34f7f..604df89 100644 --- a/.github/workflows/pypi_deploy.yml +++ b/.github/workflows/pypi_deploy.yml @@ -7,6 +7,7 @@ ## -- yyyy-mm-dd Ver. Auth. Description ## -- 2024 1.0.0 MRD Creation ## -- 2024-12-03 1.1.0 DA Updated the version for Python to 3.10 +## -- 2024-12-10 1.2.0 DA Update actions/checkout to v4 ## ------------------------------------------------------------------------------------------------- name: Deployment PyPI @@ -23,11 +24,11 @@ jobs: steps: - name: Checkout Codes - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} - name: Set up Python 3.10 - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.10' - name: Install pypa/build @@ -47,4 +48,4 @@ jobs: # if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master with: - password: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file + password: ${{ secrets.PYPI_API_TOKEN }}