-
Notifications
You must be signed in to change notification settings - Fork 67
47 lines (40 loc) · 1.24 KB
/
update-node-js.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Update node.js versions
# Runs nightly and manually
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
update_generated_files:
name: Update Node.js versions
runs-on: ubuntu-latest
steps:
- uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
id: app-token
with:
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
# don't checkout a detatched HEAD
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "npm"
- name: Install npm@10
run: |
npm install -g npm@10
- name: Bump packages
run: |
npm run update-node-js-versions
npm run update-evergreen-config
- name: Create Pull Request
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # 7.0.5
with:
token: ${{ steps.app-token.outputs.token }}
commit-message: "chore: update node.js version"
branch: ci/update-node-js-versions
title: "chore: update node.js"
body: |
- Update node.js