Skip to content

Update node.js versions #551

Update node.js versions

Update node.js versions #551

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
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # 7.0.5
with:
token: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }}
commit-message: "chore: update node.js version"
branch: ci/update-node-js-versions
title: "chore: update node.js"
body: |
- Update node.js