From aae2e9e622bdec096263c50d5ebae8083398f42d Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Wed, 26 Jun 2024 23:27:01 -0700 Subject: [PATCH] actions: fix GitHub CI issue with ruby FFI see https://github.com/ffi/ffi/issues/1103 Signed-off-by: Todd Gamblin --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index 2eded5a2..3cac90b9 100644 --- a/Gemfile +++ b/Gemfile @@ -16,3 +16,6 @@ group :jekyll_plugins do end gem "webrick", "~> 1.7" + +# https://github.com/ffi/ffi/issues/1103 +gem "ffi", "< 1.17.0"