Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrades rexml gem to fix vulnerabilities #149

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/security_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ jobs:
bundle install
- name: install bundler-audit
run: |
gem install bundler-audit && bundle-audit update
gem install bundler-audit && bundler-audit update
- name: run bundler-audit
run: |
bundle-audit --output=bundler_audit.txt
bundler-audit --output=bundler_audit.txt
- name: upload bundler-audit failure report
uses: actions/upload-artifact@v3
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ gem 'mongoid', '~> 7.4'

gem 'nokogiri', '~> 1.16.5'
gem 'nokogiri-happymapper'
gem 'rexml', '~> 3.3.2'
gem 'rexml', '>= 3.3.3'

# Postgres Database
gem 'pg'
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ GEM
rbtree (0.4.6)
redcarpet (3.6.0)
regexp_parser (2.9.0)
rexml (3.3.2)
rexml (3.3.5)
strscan
rspec-core (3.13.0)
rspec-support (~> 3.13.0)
Expand Down Expand Up @@ -572,7 +572,7 @@ DEPENDENCIES
rbnacl
redcarpet
resource_registry!
rexml (~> 3.3.2)
rexml (>= 3.3.3)
rspec-rails
rubocop
rubocop-git
Expand Down
Loading