Skip to content

Commit

Permalink
CI: Fix node version to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniovazquezblanco committed Jun 4, 2024
1 parent 5ae3297 commit 33feb20
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
shell: ${{ matrix.sys.shell }}

steps:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 'latest'

- name: Install Dependencies (Ubuntu)
if: matrix.sys.os == 'ubuntu-22.04'
run: sudo apt-get install -y patchelf qtchooser qt5-qmake qtbase5-dev-tools ninja-build cmake g++ libusb-1.0-0-dev libpcap-dev qtbase5-dev python3-dev
Expand All @@ -30,11 +35,10 @@ jobs:
if: matrix.sys.os == 'windows-latest'
uses: msys2/setup-msys2@v2
with:
path-type: inherit
msystem: UCRT64
install: git mingw-w64-ucrt-x86_64-cmake mingw-w64-ucrt-x86_64-ninja mingw-w64-ucrt-x86_64-gcc mingw-w64-ucrt-x86_64-qt5-base mingw-w64-ucrt-x86_64-libusb mingw-w64-ucrt-x86_64-libpcap

- uses: actions/setup-node@v4

- name: Check out repo
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 33feb20

Please sign in to comment.