mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -05:00
15 lines
324 B
YAML
15 lines
324 B
YAML
name: Update Deps - NPM
|
|
on:
|
|
schedule:
|
|
# Sunday at 5:00pm
|
|
- cron: "0 17 * * 0"
|
|
workflow_dispatch:
|
|
jobs:
|
|
update:
|
|
name: Update NPM Dependencies
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: ./.github/scripts/update-npm.sh
|
|
env:
|
|
id: ${{ github.run_id }}
|