Skip to content

pedantic-git is running dependency audits #105

pedantic-git is running dependency audits

pedantic-git is running dependency audits #105

Workflow file for this run

name: audits
run-name: ${{ github.actor }} is running dependency audits
on: [push]
jobs:
ruby:
name: Ruby (bundle audit)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.0'
bundler-cache: true
- name: Run bundle audit
run: bundle exec bundle-audit check --update
js:
name: JS (improved-yarn-audit)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run improved-yarn-audit
run: yarn run improved-yarn-audit --fail-on-missing-exclusions --ignore-dev-deps