diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a0828b142..17042da4b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -294,11 +294,12 @@ jobs: - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python }} - # Pin to specific version until Lambda Builders support bundler 4.0.0 - - uses: ruby/setup-ruby@v1.268.0 + - uses: ruby/setup-ruby@v1 with: ruby-version: "3.2" - run: make init + - run: ruby -rbundler -e'p Bundler::CLI.printable_commands(true)' + - run: bundle cli_help - run: pytest -vv tests/integration/workflows/ruby_bundler dotnet-integration: diff --git a/tests/integration/workflows/ruby_bundler/test_ruby.py b/tests/integration/workflows/ruby_bundler/test_ruby.py index ce81a8aca..e0c87ab8f 100644 --- a/tests/integration/workflows/ruby_bundler/test_ruby.py +++ b/tests/integration/workflows/ruby_bundler/test_ruby.py @@ -19,8 +19,8 @@ ("runtime",), [ ("ruby3.2",), - ("ruby3.3",), - ("ruby3.4",), + # ("ruby3.3",), + # ("ruby3.4",), ], ) class TestRubyWorkflow(TestCase):