From 67ceb4f0a3c9b3c789765e231255bc4fa780692f Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Mon, 15 Dec 2025 20:30:27 +0100 Subject: [PATCH 1/2] Remove `--without` from bundler call This parameter got removed in a recent release. --- .github/actions/presuite.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/presuite.rb b/.github/actions/presuite.rb index be98c8f89..569331ff0 100644 --- a/.github/actions/presuite.rb +++ b/.github/actions/presuite.rb @@ -135,7 +135,8 @@ def verify_facter_standalone_exits_0 # `documentation` group contains ronn and hpricot # both gems are ancient, dead upstream, don't compile on modern rubies # and are only required for building manpages - run('bundle install --without development:documentation') + run('bundle config set --local without "development documentation"') + run('bundle install') run('bundle exec facter') end end From d6d4df4f89b92b70ab2250426a31fa274d1bae24 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Mon, 15 Dec 2025 20:32:39 +0100 Subject: [PATCH 2/2] CI: Remove MacOS 13 acceptance tests The MacOS 13 runners are deprecated and got removed: https://github.com/actions/runner-images/issues/13046 --- .github/workflows/acceptance_tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/acceptance_tests.yml b/.github/workflows/acceptance_tests.yml index 34dc799bb..a1a5f0316 100644 --- a/.github/workflows/acceptance_tests.yml +++ b/.github/workflows/acceptance_tests.yml @@ -22,7 +22,6 @@ jobs: - windows-2022 - ubuntu-22.04 - ubuntu-24.04 - - macos-13 fail-fast: false runs-on: ${{ matrix.os }} env: