From 8dde85a4b882ec2956823743f7b7730ac2993478 Mon Sep 17 00:00:00 2001 From: Michael Hashizume Date: Mon, 15 Jul 2024 13:03:33 -0700 Subject: [PATCH] Bump Ruby in checks action to 3.3 A recent update to the Ubuntu GitHub Action runner added Ruby 3.2 to the image. This causes conflicts when we try to install Ruby 3.2 with the setup-ruby action. This commit bumps the Ruby version used in the checks action from 3.2 to 3.3. See also puppetlabs/puppet-runtime@f25d32c --- .github/workflows/checks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 1163f7d07b..f681a8e994 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -21,10 +21,10 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Install Ruby version 3.2 + - name: Install Ruby version 3.3 uses: ruby/setup-ruby@v1 with: - ruby-version: 3.2 + ruby-version: 3.3 - name: Update rubygems and install gems run: | gem update --system --silent --no-document