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