Skip to content

Commit

Permalink
Chgs forced by Node 20 - GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
miballe committed Aug 30, 2024
1 parent f912d5f commit 176c98d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dev_test_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand All @@ -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
10 changes: 5 additions & 5 deletions .github/workflows/main_test_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand All @@ -80,4 +80,4 @@ jobs:
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: false
skip-existing: false

0 comments on commit 176c98d

Please sign in to comment.