Skip to content

Commit

Permalink
disable ruby_audit job (#589)
Browse files Browse the repository at this point in the history
* update ruby version

* disable ruby_audit job
  • Loading branch information
thatguyinabeanie authored Jan 8, 2025
1 parent b91d065 commit d2b9846
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 26 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,15 @@ jobs:
uses: mikepenz/action-junit-report@v4
if: always()
with:
report_paths: './test-results/rspec/results.xml'
report_paths: "./test-results/rspec/results.xml"
include_passed: true

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
if: ${{ !cancelled() }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: 'coverage/.resultset.json,coverage/index.html,coverage/lcov.info'
files: "coverage/.resultset.json,coverage/index.html,coverage/lcov.info"
flags: rspec
name: codecov-umbrella
verbose: true
Expand All @@ -136,14 +136,13 @@ jobs:
uses: codecov/test-results-action@v1
with:
directory: test-results
files: '**/*.xml'
files: "**/*.xml"
flags: rspec
token: ${{ secrets.CODECOV_TOKEN }}

- name: List coverage directory
run: ls -la coverage


store-runtime:
runs-on: ubuntu-latest
needs: parallel-tests
Expand Down Expand Up @@ -198,6 +197,7 @@ jobs:
path: tmp/parallel_runtime_rspec.log

audit:
if: false
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.6
3.4.1
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ group :test do
gem "factory_bot_rails", "~> 6"
gem "rails-controller-testing", "~> 1"
gem "rspec_junit_formatter", "~> 0"
gem "ruby_audit", "~> 2", require: false
# gem "ruby_audit", "~> 2", require: false
gem "selenium-webdriver", "~> 4", require: false
gem "shoulda-matchers", "~> 6"
gem "simplecov", "~> 0.22.0"
Expand Down
45 changes: 25 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -132,16 +132,16 @@ GEM
railties (>= 5.0.0)
faker (3.5.1)
i18n (>= 1.8.11, < 2)
ffi (1.17.0-aarch64-linux-gnu)
ffi (1.17.0-aarch64-linux-musl)
ffi (1.17.0-arm-linux-gnu)
ffi (1.17.0-arm-linux-musl)
ffi (1.17.0-arm64-darwin)
ffi (1.17.0-x86-linux-gnu)
ffi (1.17.0-x86-linux-musl)
ffi (1.17.0-x86_64-darwin)
ffi (1.17.0-x86_64-linux-gnu)
ffi (1.17.0-x86_64-linux-musl)
ffi (1.17.1-aarch64-linux-gnu)
ffi (1.17.1-aarch64-linux-musl)
ffi (1.17.1-arm-linux-gnu)
ffi (1.17.1-arm-linux-musl)
ffi (1.17.1-arm64-darwin)
ffi (1.17.1-x86-linux-gnu)
ffi (1.17.1-x86-linux-musl)
ffi (1.17.1-x86_64-darwin)
ffi (1.17.1-x86_64-linux-gnu)
ffi (1.17.1-x86_64-linux-musl)
friendly_id (5.5.1)
activerecord (>= 4.0.0)
globalid (1.2.1)
Expand Down Expand Up @@ -193,6 +193,7 @@ GEM
net-smtp
marcel (1.0.4)
mini_mime (1.1.5)
mini_portile2 (2.8.8)
minitest (5.25.4)
msgpack (1.7.5)
net-imap (0.5.1)
Expand All @@ -205,17 +206,24 @@ GEM
net-smtp (0.5.0)
net-protocol
nio4r (2.7.4)
nokogiri (1.17.2-aarch64-linux)
nokogiri (1.18.1)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.17.2-arm-linux)
nokogiri (1.18.1-aarch64-linux-gnu)
racc (~> 1.4)
nokogiri (1.17.2-arm64-darwin)
nokogiri (1.18.1-aarch64-linux-musl)
racc (~> 1.4)
nokogiri (1.17.2-x86-linux)
nokogiri (1.18.1-arm-linux-gnu)
racc (~> 1.4)
nokogiri (1.17.2-x86_64-darwin)
nokogiri (1.18.1-arm-linux-musl)
racc (~> 1.4)
nokogiri (1.17.2-x86_64-linux)
nokogiri (1.18.1-arm64-darwin)
racc (~> 1.4)
nokogiri (1.18.1-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.18.1-x86_64-linux-gnu)
racc (~> 1.4)
nokogiri (1.18.1-x86_64-linux-musl)
racc (~> 1.4)
openssl (3.2.0)
ostruct (0.6.1)
Expand Down Expand Up @@ -431,8 +439,6 @@ GEM
ruby-lsp-rspec (0.1.19)
ruby-lsp (~> 0.22.0)
ruby-progressbar (1.13.0)
ruby_audit (2.3.1)
bundler-audit (~> 0.9.0)
rubyzip (2.3.2)
securerandom (0.4.0)
selenium-webdriver (4.27.0)
Expand Down Expand Up @@ -593,7 +599,6 @@ DEPENDENCIES
ruby-lsp
ruby-lsp-rails (~> 0.3)
ruby-lsp-rspec
ruby_audit (~> 2)
selenium-webdriver (~> 4)
shoulda-matchers (~> 6)
sidekiq (~> 7)
Expand All @@ -619,4 +624,4 @@ RUBY VERSION
ruby 3.3.5p100

BUNDLED WITH
2.5.23
2.6.2

0 comments on commit d2b9846

Please sign in to comment.