Skip to content

Commit d1cf867

Browse files
committed
Fix? (even though it worked OK) audit step to stop copilot moaning
1 parent fe695dd commit d1cf867

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
5050
- name: Audit gems
51-
run: bundle exec bundle audit check --update
51+
run: bundle exec bundle-audit check --update
5252
- name: Configure and initialize database
5353
run: |
5454
cp test/config/test_tess.yml config/tess.yml

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ gem 'whenever', require: false # Work around https://github.com/javan/whenever/i
7676
gem 'will_paginate'
7777

7878
group :development, :test do
79+
gem 'bundle-audit'
7980
gem 'byebug'
8081
gem 'pry-byebug'
8182
gem 'rubocop'
@@ -86,7 +87,6 @@ end
8687
group :development do
8788
gem 'better_errors'
8889
gem 'binding_of_caller'
89-
gem 'bundle-audit'
9090
gem 'listen'
9191
gem 'puma'
9292
gem 'web-console'

0 commit comments

Comments
 (0)