Skip to content

Update package-lock.json #61

Update package-lock.json

Update package-lock.json #61

name: Update package-lock.json
on:
schedule:
- cron: '0 15 * * 1' # Mon 11:00AM EDT. 10:00AM EST.
- cron: '0 6 1 * *' # 1st of each month 2:00 AM EDT/1:00 AM EST
workflow_dispatch: # manual trigger
jobs:
Update:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: Brightspace/third-party-actions@actions/checkout
with:
token: ${{ secrets.DEPENDENCIES_TOKEN }}
- uses: Brightspace/third-party-actions@actions/setup-node
with:
node-version-file: .nvmrc
- name: Update package-lock.json
uses: BrightspaceUI/actions/update-package-lock@main
with:
AUTO_MERGE_METHOD: squash
AUTO_MERGE_TOKEN: ${{ secrets.DEPENDENCIES_TOKEN }}
APPROVAL_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.DEPENDENCIES_TOKEN }}