Skip to content

Commit

Permalink
Partial Node 20 update, with #99 problems remaining
Browse files Browse the repository at this point in the history
  • Loading branch information
stucka committed Dec 12, 2023
1 parent 67bcc4c commit 32c21a5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: install
name: Install Python, pipenv and Pipfile packages
Expand All @@ -25,12 +25,12 @@ jobs:
test-python:
strategy:
matrix:
python: ["3.9",]
python: ["3.9", "3.12",]
name: Test Python code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: install
name: Install Python, pipenv and Pipfile packages
Expand All @@ -50,7 +50,7 @@ jobs:
needs: [test-python]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: install
name: Install Python, pipenv and Pipfile packages
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags') == 0
steps:
- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9

Expand Down

0 comments on commit 32c21a5

Please sign in to comment.