Skip to content

Commit 3103507

Browse files
committed
chore: postinstall for dependabot template-oss PR
1 parent cf6a9d6 commit 3103507

File tree

7 files changed

+19
-23
lines changed

7 files changed

+19
-23
lines changed

.github/workflows/audit.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
uses: actions/setup-node@v3
2828
id: node
2929
with:
30-
node-version: 18.x
31-
check-latest: contains('18.x', '.x')
30+
node-version: 20.x
31+
check-latest: contains('20.x', '.x')
3232

3333
# node 10/12/14 ship with npm@6, which is known to fail when updating itself in windows
3434
- name: Update Windows npm

.github/workflows/ci-release.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ jobs:
8282
uses: actions/setup-node@v3
8383
id: node
8484
with:
85-
node-version: 18.x
86-
check-latest: contains('18.x', '.x')
85+
node-version: 20.x
86+
check-latest: contains('20.x', '.x')
8787

8888
# node 10/12/14 ship with npm@6, which is known to fail when updating itself in windows
8989
- name: Update Windows npm
@@ -165,6 +165,7 @@ jobs:
165165
- 16.x
166166
- 18.0.0
167167
- 18.x
168+
- 20.x
168169
runs-on: ${{ matrix.platform.os }}
169170
defaults:
170171
run:

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
uses: actions/setup-node@v3
3232
id: node
3333
with:
34-
node-version: 18.x
35-
check-latest: contains('18.x', '.x')
34+
node-version: 20.x
35+
check-latest: contains('20.x', '.x')
3636

3737
# node 10/12/14 ship with npm@6, which is known to fail when updating itself in windows
3838
- name: Update Windows npm
@@ -107,6 +107,7 @@ jobs:
107107
- 16.x
108108
- 18.0.0
109109
- 18.x
110+
- 20.x
110111
runs-on: ${{ matrix.platform.os }}
111112
defaults:
112113
run:

.github/workflows/post-dependabot.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
uses: actions/setup-node@v3
2929
id: node
3030
with:
31-
node-version: 18.x
32-
check-latest: contains('18.x', '.x')
31+
node-version: 20.x
32+
check-latest: contains('20.x', '.x')
3333

3434
# node 10/12/14 ship with npm@6, which is known to fail when updating itself in windows
3535
- name: Update Windows npm

.github/workflows/pull-request.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
uses: actions/setup-node@v3
3232
id: node
3333
with:
34-
node-version: 18.x
35-
check-latest: contains('18.x', '.x')
34+
node-version: 20.x
35+
check-latest: contains('20.x', '.x')
3636

3737
# node 10/12/14 ship with npm@6, which is known to fail when updating itself in windows
3838
- name: Update Windows npm

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
uses: actions/setup-node@v3
4545
id: node
4646
with:
47-
node-version: 18.x
48-
check-latest: contains('18.x', '.x')
47+
node-version: 20.x
48+
check-latest: contains('20.x', '.x')
4949

5050
# node 10/12/14 ship with npm@6, which is known to fail when updating itself in windows
5151
- name: Update Windows npm
@@ -201,8 +201,8 @@ jobs:
201201
uses: actions/setup-node@v3
202202
id: node
203203
with:
204-
node-version: 18.x
205-
check-latest: contains('18.x', '.x')
204+
node-version: 20.x
205+
check-latest: contains('20.x', '.x')
206206

207207
# node 10/12/14 ship with npm@6, which is known to fail when updating itself in windows
208208
- name: Update Windows npm
@@ -425,7 +425,7 @@ jobs:
425425
- name: Publish
426426
env:
427427
PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
428-
run: npm publish --provenance
428+
run: npm publish --provenance --tag=latest
429429

430430
post-release-integration:
431431
needs: [ release, release-integration ]

package.json

+2-8
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,8 @@
4848
},
4949
"templateOSS": {
5050
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
51-
"version": "4.18.1",
52-
"publish": "true",
53-
"ciVersions": [
54-
"16.14.0",
55-
"16.x",
56-
"18.0.0",
57-
"18.x"
58-
]
51+
"version": "4.19.0",
52+
"publish": "true"
5953
},
6054
"tap": {
6155
"nyc-arg": [

0 commit comments

Comments
 (0)