-
Notifications
You must be signed in to change notification settings - Fork 67
53 lines (45 loc) · 1.42 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
48
49
50
51
52
53
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: actions/checkout@v3
with:
# don't checkout a detatched HEAD
ref: ${{ github.head_ref }}
# this is important so git log can pick up on
# the whole history to generate the list of AUTHORS
fetch-depth: '0'
- name: Setup git
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- uses: actions/setup-node@v2
with:
node-version: 16.x
cache: 'npm'
- name: Install [email protected]
run: |
npm install -g [email protected]
- name: Bump packages
run: |
npm run update-node-js-versions
npm run update-evergreen-config
git add .
git commit --no-allow-empty -m "chore: update node.js version" || true
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'chore: update node.js'
branch: ci/update-node-js-versions
title: 'chore: update node.js'
body: |
- Update node.js