Skip to content

Commit 989980c

Browse files
authored
Merge pull request #2680 from yzytom/main
let devdocs rely ruby 4.0.5, no longer rely ruby 3.x
2 parents 4ad118f + 7aeb7cf commit 989980c

9 files changed

Lines changed: 330 additions & 97 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
1515
- name: Set up Ruby
16-
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
16+
uses: ruby/setup-ruby@afeafc3d1ab54a631816aba4c914a0081c12ff2f # v1.310.0
1717
with:
1818
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
1919
- name: Run tests

.github/workflows/schedule-doc-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
1313
- name: Set up Ruby
14-
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
14+
uses: ruby/setup-ruby@afeafc3d1ab54a631816aba4c914a0081c12ff2f # v1.310.0
1515
with:
1616
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
1717
- name: Generate report

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1313
- name: Set up Ruby
14-
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
14+
uses: ruby/setup-ruby@afeafc3d1ab54a631816aba4c914a0081c12ff2f # v1.310.0
1515
with:
1616
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
1717
- name: Run tests

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.8
1+
4.0.5

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.4.7
1+
FROM ruby:4.0.5
22
ENV LANG=C.UTF-8
33
ENV ENABLE_SERVICE_WORKER=true
44

Dockerfile-alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.4.7-alpine
1+
FROM ruby:4.0.5-alpine
22

33
ENV LANG=C.UTF-8
44
ENV ENABLE_SERVICE_WORKER=true

Gemfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
source 'https://rubygems.org'
2-
ruby '3.4.8'
2+
ruby '4.0.5'
33

44
gem 'activesupport', require: false
5-
gem 'html-pipeline'
5+
gem 'html-pipeline', '~> 2.14'
6+
gem 'ostruct'
67
gem 'nokogiri'
78
gem 'pry-byebug'
89
gem 'rake'
@@ -55,3 +56,5 @@ if ENV['SELENIUM'] == '1'
5556
gem 'capybara'
5657
gem 'selenium-webdriver'
5758
end
59+
60+
gem "webrick", "~> 1.9"

0 commit comments

Comments
 (0)