File tree Expand file tree Collapse file tree 4 files changed +15
-12
lines changed Expand file tree Collapse file tree 4 files changed +15
-12
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "bump-minor-pre-major" : true
3
+ }
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ jobs:
21
21
docs :
22
22
runs-on : ubuntu-latest
23
23
steps :
24
- - uses : actions/checkout@v3
24
+ - uses : actions/checkout@v4
25
25
- name : Setup node
26
- uses : actions/setup-node@v3
26
+ uses : actions/setup-node@v4
27
27
with :
28
- node_version : 18
28
+ node_version : 22
29
29
cache : npm
30
30
cache-dependency-path : package-lock.json
31
31
- run : npm ci
Original file line number Diff line number Diff line change @@ -32,27 +32,27 @@ jobs:
32
32
steps :
33
33
- id : release
34
34
name : Release Please
35
- uses : google-github-actions /release-please-action@v3
35
+ uses : googleapis /release-please-action@v4
36
36
37
37
with :
38
38
release-type : node
39
39
token : ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
40
40
package-name : " @googlemaps/google-maps-services-js"
41
- bump-minor-pre-major : true
41
+ config-file : .github/release-please-config.json
42
42
43
43
# Everything below is for NPM publishing when a release is cut.
44
44
# Note the "if" statement on all commands to make sure that publishing
45
45
# only happens when a release is cut.
46
46
47
47
- if : ${{ steps.release.outputs.release_created }}
48
48
name : Checkout
49
- uses : actions/checkout@v3
49
+ uses : actions/checkout@v4
50
50
51
51
- if : ${{ steps.release.outputs.release_created }}
52
52
name : Setup Node for Dependency Installation
53
- uses : actions/setup-node@v3
53
+ uses : actions/setup-node@v4
54
54
with :
55
- node-version : 20
55
+ node-version : 22
56
56
cache : npm
57
57
58
58
- if : ${{ steps.release.outputs.release_created }}
62
62
# Now configure node with the registry used for publishing
63
63
- if : ${{ steps.release.outputs.release_created }}
64
64
name : Setup Node for Publishing
65
- uses : actions/setup-node@v3
65
+ uses : actions/setup-node@v4
66
66
with :
67
67
node-version : 20
68
68
registry-url : " https://wombat-dressing-room.appspot.com/"
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ jobs:
25
25
26
26
strategy :
27
27
matrix :
28
- node-version : [16 .x, 18 .x, 20 .x]
28
+ node-version : [18 .x, 20 .x, 22 .x]
29
29
30
30
steps :
31
31
- name : Checkout
32
- uses : actions/checkout@v3
32
+ uses : actions/checkout@v4
33
33
- name : Use Node.js ${{ matrix.node-version }}
34
- uses : actions/setup-node@v3
34
+ uses : actions/setup-node@v4
35
35
with :
36
36
node-version : ${{ matrix.node-version }}
37
37
cache : npm
You can’t perform that action at this time.
0 commit comments