Skip to content

Commit

Permalink
WIP: Update worker deps for node 20 (#832)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pelsin committed Feb 7, 2024
1 parent 43358ed commit 9d1cea3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
#Global Setup
- name: Checkout GP2040-CE
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
fetch-tags: true
Expand All @@ -37,7 +37,7 @@ jobs:
uses: Fortinbra/RaspberryPiPicoBuild@v2

- name: Download a Build Artifact
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.2
with:
name: fsData
path: ${{github.workspace}}/lib/httpd/
Expand All @@ -62,15 +62,15 @@ jobs:
run: GP2040_BOARDCONFIG=${{ matrix.GP2040_BOARDCONFIG }} cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel ${{steps.core_count.outputs.output}}

- name: Upload Pico Artifact
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4.3.1
with:
name: GP2040-CE - ${{ matrix.GP2040_BOARDCONFIG }}
path: ${{github.workspace}}/build/GP2040-CE_*_${{ matrix.GP2040_BOARDCONFIG }}.uf2
if-no-files-found: error

- name: Upload .elf Artifact
if: ${{ matrix.GP2040_BOARDCONFIG == 'Pico'}}
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4.3.1
with:
name: elf
path: ${{github.workspace}}/build/GP2040-CE_*_${{ matrix.GP2040_BOARDCONFIG }}.elf
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.2
with:
node-version: '18.x'
node-version: '20.x'
cache: 'npm'
cache-dependency-path: www/package-lock.json

Expand All @@ -30,7 +30,7 @@ jobs:
run: CI=false npm run build --if-present

- name: Upload www Artifact
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4.3.1
with:
name: fsData
path: ${{github.workspace}}/lib/httpd/fsdata.c
Expand Down

0 comments on commit 9d1cea3

Please sign in to comment.