Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maintenance #1132

Merged
merged 11 commits into from
Jan 14, 2025
Merged
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
- name: Configure Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.2
ruby-version: 3.3.6
- name: Cache bundler intermediate products
uses: actions/cache@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion ci/Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.0.2"
ruby "3.3.6"
2 changes: 1 addition & 1 deletion ci/generate
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require 'psych'

workflows_path = Pathname.new(__dir__).join('..', '.github', 'workflows')

workflows = Psych.load_file("workflows.yml")
workflows = Psych.load_file("workflows.yml", aliases: true)
workflows['workflows'].each do |k, v|
# Roundtrip through JSON to perform a deep clone of the value.
# If we don't, then anchors are preserved from the input file
Expand Down
2 changes: 1 addition & 1 deletion ci/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ workflows:
- name: "Configure Ruby"
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.2'
ruby-version: '3.3.6'

- name: "Cache bundler intermediate products"
uses: actions/cache@v4
Expand Down
Loading
Loading