ci: add/bump Ruby 3.4, move Node to 22 (#1594)

This involves some explicit adding of gems that were moved out of the default gems:

- `base64` and `csv` are needed for both Jekyll 3.9 and Jekyll 4.3
- `bigdecimal` is just needed for Jekyll 3.9

In the ideal case, this gets backported to both Jekyll 3.9 and 4.3 so we don't need custom Gemfiles. But, I'm also okay with adding these manually for now, and then reverting once both get a backport that patches this. Reminds me of webrick!
This commit is contained in:
Matt Wang 2025-01-13 02:44:30 -08:00 committed by GitHub
parent 7fc56e2016
commit abb054af9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 42 additions and 29 deletions

View File

@ -16,7 +16,7 @@ jobs:
matrix: matrix:
jekyll-version: [3.9, 4.3] jekyll-version: [3.9, 4.3]
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
ruby-version: ["3.1", "3.2", "3.3"] ruby-version: ["3.1", "3.2", "3.3", "3.4"]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -46,7 +46,7 @@ jobs:
- name: Setup Ruby - name: Setup Ruby
uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@v1
with: with:
ruby-version: "3.3" ruby-version: "3.4"
bundler-cache: false bundler-cache: false
- name: Bundle Install - name: Bundle Install
run: bundle install run: bundle install
@ -62,7 +62,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
ruby-version: ["3.3"] ruby-version: ["3.4"]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -96,7 +96,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [20.x] node-version: [22.x]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@ -34,7 +34,7 @@ jobs:
- name: Setup Ruby - name: Setup Ruby
uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@v1
with: with:
ruby-version: "3.3" ruby-version: "3.4"
bundler-cache: true # runs 'bundle install' and caches installed gems automatically bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages - name: Setup Pages

View File

@ -1,7 +1,6 @@
name: Publish Ruby Gem name: Publish Ruby Gem
on: on: workflow_dispatch
workflow_dispatch
jobs: jobs:
build: build:
@ -9,23 +8,23 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Setup Ruby 3.3 - name: Setup Ruby 3.4
uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@v1
with: with:
ruby-version: "3.3" ruby-version: "3.4"
- name: Publish to GPR - name: Publish to GPR
run: | run: |
mkdir -p $HOME/.gem mkdir -p $HOME/.gem
touch $HOME/.gem/credentials touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials chmod 0600 $HOME/.gem/credentials
printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build *.gemspec gem build *.gemspec
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
env: env:
GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}" GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
OWNER: ${{ github.repository_owner }} OWNER: ${{ github.repository_owner }}
# Disabled as this does not handle 2FA # Disabled as this does not handle 2FA
# - name: Publish to RubyGems # - name: Publish to RubyGems

View File

@ -1,6 +1,9 @@
source "https://rubygems.org" source "https://rubygems.org"
gemspec gemspec
gem "base64"
gem "csv"
gem "jekyll-github-metadata", ">= 2.15" gem "jekyll-github-metadata", ">= 2.15"
gem "jekyll-include-cache", group: :jekyll_plugins gem "jekyll-include-cache", group: :jekyll_plugins

View File

@ -19,6 +19,7 @@ GEM
fiber-annotation fiber-annotation
io-event (~> 1.5, >= 1.5.1) io-event (~> 1.5, >= 1.5.1)
timers (~> 4.1) timers (~> 4.1)
base64 (0.2.0)
bigdecimal (3.1.8) bigdecimal (3.1.8)
colorator (1.1.0) colorator (1.1.0)
concurrent-ruby (1.3.4) concurrent-ruby (1.3.4)
@ -26,6 +27,7 @@ GEM
fiber-annotation fiber-annotation
fiber-local (~> 1.1) fiber-local (~> 1.1)
json json
csv (3.3.2)
em-websocket (0.5.3) em-websocket (0.5.3)
eventmachine (>= 0.12.9) eventmachine (>= 0.12.9)
http_parser.rb (~> 0) http_parser.rb (~> 0)
@ -36,17 +38,17 @@ GEM
faraday-net_http (>= 2.0, < 3.2) faraday-net_http (>= 2.0, < 3.2)
faraday-net_http (3.1.0) faraday-net_http (3.1.0)
net-http net-http
ffi (1.17.0-arm64-darwin) ffi (1.17.1-arm64-darwin)
ffi (1.17.0-x86_64-linux-gnu) ffi (1.17.1-x86_64-linux-gnu)
fiber-annotation (0.2.0) fiber-annotation (0.2.0)
fiber-local (1.1.0) fiber-local (1.1.0)
fiber-storage fiber-storage
fiber-storage (0.1.0) fiber-storage (0.1.0)
forwardable-extended (2.6.0) forwardable-extended (2.6.0)
google-protobuf (4.28.2-arm64-darwin) google-protobuf (4.29.3-arm64-darwin)
bigdecimal bigdecimal
rake (>= 13) rake (>= 13)
google-protobuf (4.28.2-x86_64-linux) google-protobuf (4.29.3-x86_64-linux)
bigdecimal bigdecimal
rake (>= 13) rake (>= 13)
hashery (2.1.2) hashery (2.1.2)
@ -104,9 +106,9 @@ GEM
mercenary (0.4.0) mercenary (0.4.0)
net-http (0.4.1) net-http (0.4.1)
uri uri
nokogiri (1.16.5-arm64-darwin) nokogiri (1.18.1-arm64-darwin)
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.16.5-x86_64-linux) nokogiri (1.18.1-x86_64-linux-gnu)
racc (~> 1.4) racc (~> 1.4)
octokit (6.1.1) octokit (6.1.1)
faraday (>= 1, < 3) faraday (>= 1, < 3)
@ -155,7 +157,9 @@ PLATFORMS
x86_64-linux-gnu x86_64-linux-gnu
DEPENDENCIES DEPENDENCIES
base64
bundler (>= 2.3.5) bundler (>= 2.3.5)
csv
html-proofer (~> 5.0) html-proofer (~> 5.0)
jekyll-github-metadata (>= 2.15) jekyll-github-metadata (>= 2.15)
jekyll-include-cache jekyll-include-cache

View File

@ -2,6 +2,10 @@ source "https://rubygems.org"
gem "jekyll", "~> 3.9" gem "jekyll", "~> 3.9"
gem "base64"
gem "bigdecimal"
gem "csv"
gem "jekyll-seo-tag", ">= 2.0" gem "jekyll-seo-tag", ">= 2.0"
gem "rake", ">= 12.3.1" gem "rake", ">= 12.3.1"

View File

@ -2,6 +2,9 @@ source "https://rubygems.org"
gem "jekyll", "~> 4.3" gem "jekyll", "~> 4.3"
gem "base64"
gem "csv"
gem "jekyll-seo-tag", ">= 2.0" gem "jekyll-seo-tag", ">= 2.0"
gem "rake", ">= 12.3.1" gem "rake", ">= 12.3.1"