Skip to content

Commit

Permalink
fixes the arguments for the npm audit fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-uniswap committed Jun 27, 2024
1 parent 5b86d2f commit 6a3ccb7
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/npm-audit-fix.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
name: npm audit fix
name: NPM audit fix

on:
workflow_dispatch: # manually

jobs:
npm-audit-fix:
runs-on: ubuntu-latest
commit_title: "chore(deps): update npm dependencies"
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: ybiquitous/npm-audit-fix-action@e7e5e66fe613cd5e556db66eef24156b4bfa6134
- 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"

0 comments on commit 6a3ccb7

Please sign in to comment.