Skip to content

Commit

Permalink
Node 20 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
stucka authored Feb 6, 2024
1 parent 67bcc4c commit 5fa3627
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 @@ -30,7 +30,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 @@ -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 All @@ -71,7 +71,7 @@ jobs:

- id: save
name: Save artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-${{ github.run_number }}
path: ./dist
Expand All @@ -90,7 +90,7 @@ jobs:

- id: fetch
name: Fetch artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-${{ github.run_number }}
path: ./dist
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:

- id: fetch
name: Fetch artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-${{ github.run_number }}
path: ./dist
Expand Down

0 comments on commit 5fa3627

Please sign in to comment.