Update dependencies #253
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: Update dependencies | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' | |
permissions: | |
contents: read | |
jobs: | |
update_deps: | |
permissions: | |
contents: write # for peter-evans/create-pull-request to create branch | |
pull-requests: write # for peter-evans/create-pull-request to create a PR | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: dev | |
token: ${{ secrets.GH_TOKEN }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
# connect-gzip-static@4.0.0 requires Node 20 >= | |
# eslint: https://github.com/typescript-eslint/typescript-eslint/issues/8211 | |
- run: npx npm-check-updates -u -x connect-gzip-static -x eslint | |
- run: rm -f package-lock.json | |
- run: npm install | |
- uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: 'fix(ignore): update dependencies' | |
branch: 'deps/all' | |
title: Update dependencies | |
token: ${{ secrets.GH_TOKEN }} |