From 30fedf92c20d946abfcce5ea2ddc5c5cc3d8ffcb Mon Sep 17 00:00:00 2001 From: Lars Kanis Date: Wed, 10 Dec 2025 09:57:08 +0100 Subject: [PATCH 1/2] CI: Macos-13 on Intel is deprecated https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ --- .github/workflows/binary-gems.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/binary-gems.yml b/.github/workflows/binary-gems.yml index e70c02686..72d8c8ee4 100644 --- a/.github/workflows/binary-gems.yml +++ b/.github/workflows/binary-gems.yml @@ -86,7 +86,7 @@ jobs: - os: macos-latest ruby: "3.4" platform: "arm64-darwin" - - os: macos-13 + - os: macos-15-intel ruby: "3.4" platform: "x86_64-darwin" From 93ce51ca82af96aff6f4222db5e73429a0dae739 Mon Sep 17 00:00:00 2001 From: Lars Kanis Date: Wed, 10 Dec 2025 09:57:38 +0100 Subject: [PATCH 2/2] CI: Fix Truffleruby OpenSSL load error --- .github/workflows/source-gem.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/source-gem.yml b/.github/workflows/source-gem.yml index 7c1c3deae..58423f478 100644 --- a/.github/workflows/source-gem.yml +++ b/.github/workflows/source-gem.yml @@ -104,6 +104,10 @@ jobs: shell: cmd run: ridk exec sh -c "pacman --sync --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gcc" + - name: Fix Truffleruby OpenSSL load error + if: matrix.ruby == 'truffleruby-head' + run: gem install openssl + - run: bundle install - name: Download PostgreSQL Windows