Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
bundler:
runs-on: ubuntu-latest
container:
image: ruby:3.1.2
image: ruby:3.3.8
steps:
- uses: actions/checkout@v6

Expand All @@ -34,7 +34,7 @@ jobs:
debian-only:
runs-on: ubuntu-latest
container:
image: debian:bookworm
image: debian:trixie
steps:
- uses: actions/checkout@v6

Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.2
3.3.8
11 changes: 7 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
source 'https://rubygems.org'

## This version should match the version in Debian Stable.
## If you update the version here, also update it in .ruby-version, .cirrus.yml
## and README.md. Then push your branch and make sure Cirrus supports that
## version.
ruby '3.1.2'
## If you update the version here, also update it in .ruby-version,
## .github/workflows/ci.yml, contrib/devtools/Dockerfile, and README.md.
## Then push your branch and make sure CI supports that version.
ruby '3.3.8'

gem 'base64'
gem 'csv'

## If you add a new Gem below, run `bundle install` to install it.
group :development do
Expand Down
6 changes: 5 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ GEM
specs:
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
base64 (0.3.0)
bigdecimal (3.1.8)
colorator (1.1.0)
concurrent-ruby (1.3.3)
csv (3.3.5)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
Expand Down Expand Up @@ -93,13 +95,15 @@ PLATFORMS
ruby

DEPENDENCIES
base64
csv
html-proofer (~> 3.19)
jekyll
jekyll-redirect-from
kramdown-parser-gfm

RUBY VERSION
ruby 3.1.2p20
ruby 3.3.8p144

BUNDLED WITH
2.5.14
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ permalink: /en/2016/01/01/short-title
## Building

This website is based on [Jekyll](https://jekyllrb.com/). To build
locally, [install Ruby 3.1.2](https://gorails.com/setup) using system
locally, [install Ruby 3.3.8](https://gorails.com/setup) using system
packages, [rvm](https://rvm.io), [rbenv](https://github.com/rbenv/rbenv), or another method. An
alternative is to use Docker, for which instructions are available [here](./contrib/devtools/).
Then clone this repository and change directory into it:
Expand Down
2 changes: 1 addition & 1 deletion contrib/devtools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.1.2
FROM ruby:3.3.8

ENV NOKOGIRI_USE_SYSTEM_LIBRARIES=true
ENV JEKYLL_ENV=production
Expand Down