From 8d9c88d2e263750a2ade03754643999d82a04c42 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Thu, 5 Feb 2026 00:36:19 +0100 Subject: [PATCH] ffs --- .github/workflows/build.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c65ceee..c20b2e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,10 +30,18 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Install Ruby + run: | + sudo apt-get update + sudo apt-get install -y autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm6 libgdbm-dev libdb-dev + git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build + ~/.rbenv/plugins/ruby-build/install.sh + ruby-build 3.2.4 /opt/hostedtoolcache/Ruby/3.2.4/x64 + touch /opt/hostedtoolcache/Ruby/3.2.4/x64.complete - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.4.7 + ruby-version: 3.x - name: Install dependencies run: |