This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
Weekly Dependency Update #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Weekly Dependency Update | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: '0 0 * * 0' # Run every Sunday at midnight (UTC) | |
jobs: | |
update-deps: | |
name: Update Node dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: neverendingqs/gh-action-node-update-deps@v2 | |
with: | |
bump-version: patch # defaults to not bumping the package version |