From 42aacd5864a0572282d51f7688da5954a4fa7489 Mon Sep 17 00:00:00 2001 From: Jason Frey Date: Thu, 2 Jan 2025 10:37:46 -0500 Subject: [PATCH] Update instance_types action to Ruby 3.3 Since the core repo has now upgraded to no longer support Ruby 3.0, this now fails on Ruby 3.0 with Your Ruby version is 3.0.7, but your Gemfile specified >= 3.1.1, < 3.5.0 This commit upgrades the Ruby version to 3.3 to fix this. --- .github/workflows/instance_types.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/instance_types.yaml b/.github/workflows/instance_types.yaml index 1dbcbf2d..623f5d43 100644 --- a/.github/workflows/instance_types.yaml +++ b/.github/workflows/instance_types.yaml @@ -15,7 +15,7 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: "3.0" + ruby-version: "3.3" bundler-cache: true - name: Update regions run: bundle exec rake aws:extract:regions