File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 77
88 strategy :
99 matrix :
10- node-version : [20 .x]
10+ node-version : [24 .x]
1111 max-parallel : 1 # the streaming API can be called only once at a time
1212
1313 steps :
14- - uses : actions/checkout@v2
14+ - uses : actions/checkout@v5
1515 - name : Use Node.js ${{ matrix.node-version }}
16- uses : actions/setup-node@v1
16+ uses : actions/setup-node@v6
1717 with :
1818 node-version : ${{ matrix.node-version }}
1919 - run : npm ci
Original file line number Diff line number Diff line change 99 publish :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v4
13- - uses : actions/setup-node@v4
12+ - uses : actions/checkout@v5
13+ - uses : actions/setup-node@v6
1414 with :
1515 node-version : ' lts/*'
1616 registry-url : ' https://registry.npmjs.org'
17+ # Ensure npm 11.5.1 or later is installed
18+ - name : Update npm
19+ run : npm install -g npm@latest
1720 - run : npm ci
1821 - run : npm publish --provenance --access public
You can’t perform that action at this time.
0 commit comments