Skip to content

Commit 33feb20

Browse files
committedJun 4, 2024
CI: Fix node version to latest
1 parent 5ae3297 commit 33feb20

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎.github/workflows/dev-build.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
shell: ${{ matrix.sys.shell }}
2323

2424
steps:
25+
- name: Setup node
26+
uses: actions/setup-node@v4
27+
with:
28+
node-version: 'latest'
29+
2530
- name: Install Dependencies (Ubuntu)
2631
if: matrix.sys.os == 'ubuntu-22.04'
2732
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
@@ -30,11 +35,10 @@ jobs:
3035
if: matrix.sys.os == 'windows-latest'
3136
uses: msys2/setup-msys2@v2
3237
with:
38+
path-type: inherit
3339
msystem: UCRT64
3440
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
3541

36-
- uses: actions/setup-node@v4
37-
3842
- name: Check out repo
3943
uses: actions/checkout@v3
4044
with:

0 commit comments

Comments
 (0)