build(deps-dev): bump the dev-types group with 3 updates #402
Workflow file for this run
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: Inspect dependencies | |
on: | |
pull_request: | |
paths: | |
# run only when one of the files matching the glob patterns changed | |
- 'package.json' | |
- 'package-lock.json' | |
jobs: | |
check_new_dependencies: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
# required by hiwelo/new-dependencies-action | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for new dependencies | |
uses: hiwelo/new-dependencies-action@1.0.1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |