From ef8e51b4c9e28f1b64e673d7a2ee95cdcb0621bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 07:02:58 +0000 Subject: [PATCH 1/3] Bump step-security/harden-runner from 2.20.0 to 2.20.1 Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.20.0 to 2.20.1. - [Release notes](https://github.com/step-security/harden-runner/releases) - [Commits](https://github.com/step-security/harden-runner/compare/bf7454d06d71f1098171f2acdf0cd4708d7b5920...b09bb98e06d4d774595224525879c09bc6e98c40) --- updated-dependencies: - dependency-name: step-security/harden-runner dependency-version: 2.20.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/push_gem.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push_gem.yml b/.github/workflows/push_gem.yml index d6041a0..914b433 100644 --- a/.github/workflows/push_gem.yml +++ b/.github/workflows/push_gem.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Harden Runner - uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0 + uses: step-security/harden-runner@b09bb98e06d4d774595224525879c09bc6e98c40 # v2.20.1 with: egress-policy: audit From 50cd1f68e9644aa24fc366f7102f30df9abcef77 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Mon, 10 Aug 2026 09:35:13 +0200 Subject: [PATCH 2/3] Gemfile: add fiddle as a development dependency Warning was: warning: fiddle/import is found in fiddle, which is not part of the default gems since Ruby 4.0.0. --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 65b9529..7e24f60 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,7 @@ source 'https://rubygems.org' gemspec gem "bundler" +gem "fiddle" gem "test-unit" gem "test-unit-ruby-core" gem "rake" From 060e5f35e380640679910f309006d221dbba04e5 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Mon, 10 Aug 2026 09:40:59 +0200 Subject: [PATCH 3/3] Gemfile: fiddle only for Ruby 4 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 7e24f60..a8fdfc7 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ source 'https://rubygems.org' gemspec gem "bundler" -gem "fiddle" +gem "fiddle" if RUBY_VERSION.start_with?("4") gem "test-unit" gem "test-unit-ruby-core" gem "rake"