2 changed files with 34 additions and 17 deletions
@ -0,0 +1,34 @@ |
|||||||
|
name: Audit dependencies |
||||||
|
|
||||||
|
on: |
||||||
|
pull_request: |
||||||
|
types: |
||||||
|
- opened |
||||||
|
- synchronize |
||||||
|
push: |
||||||
|
branches: |
||||||
|
- main |
||||||
|
merge_group: |
||||||
|
workflow_dispatch: |
||||||
|
|
||||||
|
defaults: |
||||||
|
run: |
||||||
|
shell: bash |
||||||
|
|
||||||
|
jobs: |
||||||
|
audit: |
||||||
|
name: Audit dependencies |
||||||
|
runs-on: ubuntu-latest |
||||||
|
|
||||||
|
steps: |
||||||
|
- name: Checkout |
||||||
|
uses: actions/checkout@v4 |
||||||
|
|
||||||
|
- name: Set up Ruby |
||||||
|
uses: ruby/setup-ruby@v1 |
||||||
|
with: |
||||||
|
bundler-cache: true |
||||||
|
|
||||||
|
- name: Audit |
||||||
|
run: | |
||||||
|
bundle exec bundler-audit |
||||||
Loading…
Reference in new issue