Skip to content

Commit 0493a79

Browse files
chore(ci): use the same node and npm version as we do in EVG ci (#5613)
1 parent d79e1fc commit 0493a79

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed

.github/workflows/authors-and-third-party-notices.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
fetch-depth: '0'
2424

2525

26-
- uses: actions/setup-node@v2
26+
- uses: actions/setup-node@v3
2727
with:
28-
node-version: ^16.20.2
28+
node-version: 18.19.1
2929
cache: 'npm'
3030

31-
- name: Install npm@8
31+
- name: Install npm@10.2.4
3232
run: |
33-
npm install -g npm@8
33+
npm install -g npm@10.2.4
3434
3535
- name: Install Dependencies
3636
run: |
@@ -44,7 +44,7 @@ jobs:
4444
run: npm run update-third-party-notices
4545

4646
- name: Create Pull Request
47-
uses: peter-evans/create-pull-request@v4
47+
uses: peter-evans/create-pull-request@v6
4848
with:
4949
commit-message: Update report
5050
branch: ci/update-3rd-party-notices-and-authors

.github/workflows/bump-packages.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
2525
git config --local user.name "github-actions[bot]"
2626
27-
- uses: actions/setup-node@v2
27+
- uses: actions/setup-node@v3
2828
with:
29-
node-version: ^16.20.2
29+
node-version: 18.19.1
3030
cache: 'npm'
3131

32-
- name: Install npm@8.19.4
32+
- name: Install npm@10.2.4
3333
run: |
34-
npm install -g npm@8.19.4
34+
npm install -g npm@10.2.4
3535
3636
- name: Install Dependencies
3737
run: |
@@ -49,7 +49,7 @@ jobs:
4949
5050
- name: Create Pull Request
5151
id: cpr
52-
uses: peter-evans/create-pull-request@v4
52+
uses: peter-evans/create-pull-request@v6
5353
with:
5454
token: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }}
5555
commit-message: 'chore(release): bump package versions'

.github/workflows/publish-compass.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121

2222
- name: Setup Node.js Environment
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v3
2424
with:
25-
node-version: ^16.20.2
25+
node-version: 18.19.1
2626
cache: 'npm'
2727

28-
- name: Install npm@8
28+
- name: Install npm@10.2.4
2929
run: |
30-
npm install -g npm@8
30+
npm install -g npm@10.2.4
3131
3232
- name: Install Dependencies
3333
run: |

.github/workflows/publish-packages.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
git config --local user.name "github-actions[bot]"
3333
3434
- name: "Use Node.js 14"
35-
uses: actions/setup-node@v2
35+
uses: actions/setup-node@v3
3636
with:
37-
node-version: ^16.20.2
37+
node-version: 18.19.1
3838

39-
- name: Install npm@8
40-
run: npm install -g npm@8
39+
- name: Install npm@10.2.4
40+
run: npm install -g npm@10.2.4
4141

4242
- name: Install Dependencies
4343
run: |

.github/workflows/start-beta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
3030
- uses: actions/setup-node@v3
3131
with:
32-
node-version: ^16.x
32+
node-version: 18.19.1
3333
cache: 'npm'
3434

35-
- name: Install npm@8.19.4
35+
- name: Install npm@10.2.4
3636
run: |
37-
npm install -g npm@8.19.4
37+
npm install -g npm@10.2.4
3838
3939
- name: Install Dependencies
4040
run: |

.github/workflows/start-ga.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
3030
- uses: actions/setup-node@v3
3131
with:
32-
node-version: ^16.x
32+
node-version: 18.19.1
3333
cache: 'npm'
3434

35-
- name: Install npm@8.19.4
35+
- name: Install npm@10.2.4
3636
run: |
37-
npm install -g npm@8.19.4
37+
npm install -g npm@10.2.4
3838
3939
- name: Install Dependencies
4040
run: |

0 commit comments

Comments
 (0)