bundler-audit.yml 666 B

12345678910111213141516171819202122232425262728293031323334
  1. name: Bundler Audit
  2. on:
  3. push:
  4. branches-ignore:
  5. - 'dependabot/**'
  6. paths:
  7. - 'Gemfile*'
  8. - '.ruby-version'
  9. - '.bundler-audit.yml'
  10. - '.github/workflows/bundler-audit.yml'
  11. pull_request:
  12. paths:
  13. - 'Gemfile*'
  14. - '.ruby-version'
  15. - '.bundler-audit.yml'
  16. - '.github/workflows/bundler-audit.yml'
  17. schedule:
  18. - cron: '0 5 * * 1'
  19. jobs:
  20. security:
  21. runs-on: ubuntu-latest
  22. steps:
  23. - name: Clone repository
  24. uses: actions/checkout@v4
  25. - name: Set up Ruby environment
  26. uses: ./.github/actions/setup-ruby
  27. - name: Run bundler-audit
  28. run: bundle exec bundler-audit