23 lines
437 B
YAML
23 lines
437 B
YAML
name: Bundler-audit
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Install cURL Headers
|
|
run: sudo apt-get install libcurl4-openssl-dev
|
|
- uses: actions/checkout@v3
|
|
- name: setup ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
bundler-cache: true
|
|
- run: bundle exec bundle-audit check --update
|