diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index dd8b40859d..e37b9a4dfe 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -23,6 +23,7 @@ jobs: - '3.0' - '3.2' - 'jruby-9.3.14.0' + - 'jruby-9.4.7.0' runs-on: ubuntu-20.04 steps: - name: Checkout current PR diff --git a/spec/facter/util/resolvers/networking/networking_spec.rb b/spec/facter/util/resolvers/networking/networking_spec.rb index 095fe84b8c..edcd7aa5ac 100644 --- a/spec/facter/util/resolvers/networking/networking_spec.rb +++ b/spec/facter/util/resolvers/networking/networking_spec.rb @@ -54,6 +54,7 @@ let(:address) { '::ffff:192.0.2.128' } it 'returns scope6' do + pending('JRuby 9.4.7.0 does not properly parse mixed IPv6 addresses https://github.com/jruby/jruby/issues/8248') if RUBY_PLATFORM == 'java' && RUBY_VERSION == '3.1.4' expect(networking_helper.get_scope(address)).to eql('global') end end