Skip to content

Commit 390515a

Browse files
authored
Update build.yml
Update default runtime to node20 (fix node deprecation warning)
1 parent 657c33a commit 390515a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: ${{matrix.os}} (${{matrix.compiler}}, ${{matrix.defines}})
2020
runs-on: ${{matrix.os}}-latest
2121
steps:
22-
- uses: actions/checkout@v1
22+
- uses: actions/checkout@v4
2323
- name: make test
2424
run: |
2525
export CXX=${{matrix.compiler}}
@@ -41,7 +41,7 @@ jobs:
4141
name: ${{matrix.os}} cmake
4242
runs-on: ${{matrix.os}}-latest
4343
steps:
44-
- uses: actions/checkout@v1
44+
- uses: actions/checkout@v4
4545
- name: cmake configure
4646
run: |
4747
mkdir cmake && cd cmake
@@ -57,7 +57,7 @@ jobs:
5757
arch: [Win32, x64]
5858
defines: [standard, PUGIXML_WCHAR_MODE, PUGIXML_COMPACT, PUGIXML_NO_EXCEPTIONS]
5959
steps:
60-
- uses: actions/checkout@v1
60+
- uses: actions/checkout@v4
6161
- name: cmake configure
6262
run: cmake . -DPUGIXML_BUILD_TESTS=ON -D${{matrix.defines}}=ON -A ${{matrix.arch}}
6363
- name: cmake test

0 commit comments

Comments
 (0)