Skip to content

Commit

Permalink
Bump nokogiri from 1.13.10 to 1.14.3 (#129)
Browse files Browse the repository at this point in the history
* Bump nokogiri from 1.13.10 to 1.14.3

Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.10 to 1.14.3.
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/nokogiri@v1.13.10...v1.14.3)

---
updated-dependencies:
- dependency-name: nokogiri
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update README.md

* switch to ruby 2.7 and bundler 2.4

* Update link_checker.rb

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Liviu Coman <comanl@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and comanl committed Oct 18, 2023
1 parent e448956 commit 6beb812
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
sudo snap install --classic ripgrep
rg --version
- name: "Setup ruby 2.6"
- name: "Setup ruby 2.7"
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.10
ruby-version: 2.7.8
bundler-cache: false

- uses: actions/checkout@v1
Expand All @@ -33,7 +33,7 @@ jobs:
- name: "Install Gems"
run: |
gem install bundler:2.3.26
gem install bundler:2.4.21
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ gem "pry", "~> 0.12.2"
gem 'ffi', "~> 1.15.5", git: "https://github.com/ffi/ffi", submodules: true

gem "git", "~> 1.13"
gem "nokogiri", "~> 1.13.10"
gem "nokogiri", "~> 1.14.3"
gem "babel-transpiler", ">= 0.7.0", git: "https://github.com/isantoshsingh/ruby-babel-transpiler"
gem "therubyracer"
gem "html-proofer", "~> 3.15"
Expand Down
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ GEM
libv8 (3.16.14.19)
mercenary (0.4.0)
method_source (0.9.2)
mini_portile2 (2.8.0)
mini_portile2 (2.8.1)
minitest (5.14.0)
minitest-color (0.0.2)
minitest (~> 5)
nokogiri (1.13.10)
nokogiri (1.14.3)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
nokogumbo (2.0.2)
Expand Down Expand Up @@ -134,7 +134,7 @@ GEM
method_source (~> 0.9.0)
psych (3.1.0)
public_suffix (4.0.6)
racc (1.6.1)
racc (1.6.2)
rainbow (3.0.0)
rake (13.0.1)
rchardet (1.8.0)
Expand Down Expand Up @@ -229,7 +229,7 @@ DEPENDENCIES
json (~> 2.3)
minitest (~> 5.14)
minitest-color (~> 0.0.2)
nokogiri (~> 1.13.10)
nokogiri (~> 1.14.3)
os (~> 1.0)
pry (~> 0.12.2)
rake (~> 13.0)
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,3 @@ The toolchain is designed to run through different stages, that have specific re
* `DEBUG` for debug builds
* `SKIP_COMBINE`
* additional debug output

2 changes: 1 addition & 1 deletion test/test_extensions.d/link_checker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_links
adoc = init(adoc_content, "#{self.class.name}_#{__method__}")
assert_equal(4, adoc.parsed.references[:links].length)
errors = Toolchain::LinkChecker.new.run(adoc)
assert_equal(3, errors.length)
assert_equal(4, errors.length)
assert_any_startwith(errors, '[404] Not Found') # 2.
assert_any_startwith(errors, 'SocketError') # 3.
assert_any_startwith(errors, 'Net::OpenTimeout') # 4.
Expand Down

0 comments on commit 6beb812

Please sign in to comment.