@@ -36,11 +36,10 @@ jobs:
3636 uses : actions/checkout@v5
3737 - name : Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
3838 # see https://github.com/actions/setup-node
39- uses : actions/setup-node@v5
39+ uses : actions/setup-node@v6
4040 with :
4141 node-version : ${{ env.NODE_ACTIVE_LTS }}
42- # cache: "npm"
43- # cache-dependency-path: "**/package-lock.json"
42+ package-manager-cache : false
4443 - name : setup project
4544 run : npm i --ignore-scripts
4645 - name : build ${{ matrix.target }}
@@ -63,11 +62,10 @@ jobs:
6362 uses : actions/checkout@v5
6463 - name : Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
6564 # see https://github.com/actions/setup-node
66- uses : actions/setup-node@v5
65+ uses : actions/setup-node@v6
6766 with :
6867 node-version : ${{ env.NODE_ACTIVE_LTS }}
69- # cache: "npm"
70- # cache-dependency-path: "**/package-lock.json"
68+ package-manager-cache : false
7169 - name : setup project
7270 run : |
7371 npm install --ignore-scripts --loglevel=silly
@@ -108,11 +106,10 @@ jobs:
108106 uses : actions/checkout@v5
109107 - name : Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
110108 # see https://github.com/actions/setup-node
111- uses : actions/setup-node@v5
109+ uses : actions/setup-node@v6
112110 with :
113111 node-version : ${{ env.NODE_ACTIVE_LTS }}
114- # cache: "npm"
115- # cache-dependency-path: "**/package-lock.json"
112+ package-manager-cache : false
116113 - name : setup project
117114 run : npm install --ignore-scripts --loglevel=silly
118115 - name : setup tool
@@ -142,11 +139,10 @@ jobs:
142139 uses : actions/checkout@v5
143140 - name : Setup Node.js ${{ matrix.node-version }}
144141 # see https://github.com/actions/setup-node
145- uses : actions/setup-node@v5
142+ uses : actions/setup-node@v6
146143 with :
147144 node-version : ${{ matrix.node-version }}
148- # cache: "npm"
149- # cache-dependency-path: "**/package-lock.json"
145+ package-manager-cache : false
150146 - # some integration tests require a certain npm version to be installable
151147 name : update npm
152148 run : |-
@@ -221,11 +217,10 @@ jobs:
221217 uses : actions/checkout@v5
222218 - name : Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
223219 # see https://github.com/actions/setup-node
224- uses : actions/setup-node@v5
220+ uses : actions/setup-node@v6
225221 with :
226222 node-version : ${{ env.NODE_ACTIVE_LTS }}
227- # cache: "npm"
228- # cache-dependency-path: "**/package-lock.json"
223+ package-manager-cache : false
229224 - name : fetch build artifact
230225 # see https://github.com/actions/download-artifact
231226 uses : actions/download-artifact@v5
0 commit comments