Skip to content

Commit

Permalink
Update main_skiforecast.yml
Browse files Browse the repository at this point in the history
resolve Node.js 16 deprecation
  • Loading branch information
cander67 authored Feb 18, 2024
1 parent 3a9243d commit b372c07
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/main_skiforecast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '20.x'

- name: Setup Python version
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}

Expand All @@ -45,7 +40,7 @@ jobs:
run: zip release.zip ./* -r

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-app
path: |
Expand All @@ -60,13 +55,9 @@ jobs:
url: ${{ steps.deploy-to-function.outputs.webapp-url }}

steps:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '20.x'

- name: Download artifact from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-app

Expand Down

0 comments on commit b372c07

Please sign in to comment.