Skip to content

Commit b3145cb

Browse files
committed
upgrade github CI workflow
1 parent 9065c6f commit b3145cb

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/workflow.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,21 @@ jobs:
99
matrix:
1010
os: [ubuntu-latest, windows-latest]
1111
steps:
12-
- uses: actions/checkout@master
12+
- uses: actions/checkout@v4
13+
14+
- name: Install D compiler
15+
uses: dlang-community/setup-dlang@v2
16+
with:
17+
compiler: dmd
1318

1419
- name: Start xvfb
1520
if: startsWith(matrix.os, 'ubuntu')
1621
run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
17-
18-
- name: Set Node.js 10.x
19-
uses: actions/setup-node@master
22+
23+
- name: Set Node.js
24+
uses: actions/setup-node@v4
2025
with:
21-
version: 10.x
26+
node-version: lts/*
2227

2328
- name: npm install
2429
run: npm install

0 commit comments

Comments
 (0)