NPM audit fix #4
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: NPM audit fix | |
on: | |
workflow_dispatch: # manually | |
jobs: | |
npm-audit-fix: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Use npm audit fix | |
uses: ybiquitous/npm-audit-fix-action@e7e5e66fe613cd5e556db66eef24156b4bfa6134 | |
with: | |
commit_title: "chore(deps): update npm dependencies" | |
default_branch: "main" | |
description: "Run npm audit fix" | |
branch: "fix/npm-audit-fix" |