From f263f7e886286af4c6edcb21f2fb4b2d45846a07 Mon Sep 17 00:00:00 2001 From: Jamie McCarthy Date: Mon, 12 Feb 2024 06:56:37 -0600 Subject: [PATCH] Run ci/rubyonrails with bundle exec --- ci/rubyonrails.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/rubyonrails.yml b/ci/rubyonrails.yml index 20ff014..dba16cb 100644 --- a/ci/rubyonrails.yml +++ b/ci/rubyonrails.yml @@ -51,8 +51,8 @@ jobs: bundler-cache: true # Add or replace any other lints here - name: Security audit dependencies - run: bin/bundler-audit --update + run: bundle exec bundler-audit --update - name: Security audit application code - run: bin/brakeman -q -w2 + run: bundle exec brakeman -q -w2 - name: Lint Ruby files - run: bin/rubocop --parallel + run: bundle exec rubocop --parallel