From 176c98de6b0db35d9aa2b4966d26c23e03a4be2d Mon Sep 17 00:00:00 2001 From: Miguel Ballesteros Date: Fri, 30 Aug 2024 16:51:41 -0500 Subject: [PATCH] Chgs forced by Node 20 - GitHub Actions --- .github/workflows/dev_test_publish.yml | 12 ++++++------ .github/workflows/main_test_publish.yml | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/dev_test_publish.yml b/.github/workflows/dev_test_publish.yml index 5e09bba..d40cdc2 100644 --- a/.github/workflows/dev_test_publish.yml +++ b/.github/workflows/dev_test_publish.yml @@ -25,14 +25,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: 'dev' - name: Set up Python uses: actions/setup-python@v3 with: - python-version: '3.12.4' + python-version: '3.10.9' - name: Install latest PIP run: | @@ -55,14 +55,14 @@ jobs: needs: [test] steps: - name : Checkout code - uses : actions/checkout@v3 + uses : actions/checkout@v4 with: ref: 'dev' - name: Set up Python uses: actions/setup-python@v3 with: - python-version: '3.12.4' + python-version: '3.10.9' - name: Install latest pip, setuptools, twine + wheel run: | @@ -84,5 +84,5 @@ jobs: with: user: __token__ password: ${{ secrets.TEST_PYPI_API_TOKEN }} - repository_url: https://test.pypi.org/legacy/ - skip_existing: true + repository-url: https://test.pypi.org/legacy/ + skip-existing: true diff --git a/.github/workflows/main_test_publish.yml b/.github/workflows/main_test_publish.yml index e7b9e2d..684948b 100644 --- a/.github/workflows/main_test_publish.yml +++ b/.github/workflows/main_test_publish.yml @@ -25,12 +25,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v3 with: - python-version: '3.12.4' + python-version: '3.10.9' - name: Install latest PIP run: | @@ -53,12 +53,12 @@ jobs: needs: [test] steps: - name : Checkout code - uses : actions/checkout@v3 + uses : actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v3 with: - python-version: '3.12.4' + python-version: '3.10.9' - name: Install latest pip, setuptools, twine + wheel run: | @@ -80,4 +80,4 @@ jobs: with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} - skip_existing: false + skip-existing: false