mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
5d5ae35998
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
427 B
YAML
18 lines
427 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
|
|
timeout-minutes: 30
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Update Dependencies
|
|
run: ./.github/scripts/update-npm.sh
|
|
env:
|
|
id: ${{ github.run_id }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|