2022-02-21 10:04:19 -05:00
|
|
|
name: Update Deps - NPM
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Sunday at 5:00pm
|
|
|
|
- cron: "0 17 * * 0"
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
update:
|
2022-02-21 10:07:36 -05:00
|
|
|
name: Update NPM Dependencies
|
2022-02-21 10:04:19 -05:00
|
|
|
runs-on: ubuntu-latest
|
2022-02-22 10:51:12 -05:00
|
|
|
timeout-minutes: 30
|
2022-02-21 10:04:19 -05:00
|
|
|
steps:
|
2022-03-07 10:34:26 -05:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-22 10:40:43 -05:00
|
|
|
- name: Update Dependencies
|
|
|
|
run: ./.github/scripts/update-npm.sh
|
2022-02-21 10:04:19 -05:00
|
|
|
env:
|
|
|
|
id: ${{ github.run_id }}
|
2022-02-22 10:33:03 -05:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|