@@ -14,13 +14,13 @@ jobs:
1414 strategy :
1515 matrix :
1616 os : [windows-2019, macos-12, ubuntu-20.04]
17- node : [18, 20, 21]
17+ node : [18, 20, 21, 22 ]
1818 steps :
19- - uses : actions/checkout@v3
19+ - uses : actions/checkout@v4
2020 - uses : actions/setup-python@v4
2121 with :
2222 python-version : ' 3.11'
23- - uses : actions/setup-node@v3
23+ - uses : actions/setup-node@v4
2424 with :
2525 node-version : ${{ matrix.node }}
2626 - run : corepack enable
@@ -30,20 +30,20 @@ jobs:
3030 - run : pnpm tsd
3131 - run : pnpm test
3232 - run : pnpm prebuild
33- - uses : actions/upload-artifact@v3
33+ - uses : actions/upload-artifact@v4
3434 with :
3535 name : ${{ matrix.os }}-${{ matrix.node }}-binary
3636 path : ' prebuilds/**/*.tar.gz'
3737 alpine :
3838 runs-on : ubuntu-20.04
3939 strategy :
4040 matrix :
41- node : [18, 20, 21]
41+ node : [18, 20, 21, 22 ]
4242 fail-fast : true
4343 container :
4444 image : node:${{ matrix.node }}-alpine
4545 steps :
46- - uses : actions/checkout@v3
46+ - uses : actions/checkout@v4
4747 - run : |
4848 apk add --no-cache python3 make g++
4949 - run : corepack enable
5353 - run : pnpm tsd
5454 - run : pnpm test
5555 - run : pnpm prebuild
56- - uses : actions/upload-artifact@v3
56+ - uses : actions/upload-artifact@v4
5757 with :
5858 name : alpine-${{ matrix.node }}-binary
5959 path : ' prebuilds/**/*.tar.gz'
@@ -62,11 +62,11 @@ jobs:
6262 needs : [alpine, build]
6363 if : startsWith(github.ref, 'refs/tags/v')
6464 steps :
65- - uses : actions/checkout@v3
66- - uses : actions/setup-node@v3
65+ - uses : actions/checkout@v4
66+ - uses : actions/setup-node@v4
6767 with :
6868 node-version : 20
69- - uses : actions/download-artifact@v2
69+ - uses : actions/download-artifact@v4
7070 with :
7171 path : prebuilds
7272 - id : vars
0 commit comments