Skip to content

Commit 7f3b103

Browse files
authored
Fixing builds by upping version (#865)
1 parent a833c09 commit 7f3b103

5 files changed

Lines changed: 14 additions & 9 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: cimg/ruby:3.1
5+
- image: cimg/ruby:3.2
66
environment:
77
BUNDLER_VERSION: 2.4.17
88
steps:

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Only include conferences/workshops specifically for software testing. Per the RE
145145

146146
Per the Gemfile and CircleCI config:
147147

148-
- **Ruby**: 3.1 (cimg/ruby:3.1)
148+
- **Ruby**: 3.2 (cimg/ruby:3.2)
149149
- **Bundler**: 2.4.17
150150
- **Jekyll**: >= 3.10.0
151151
- **GitHub Pages**: >= 232

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup Ruby
5555
uses: ruby/setup-ruby@v1
5656
with:
57-
ruby-version: '3.1'
57+
ruby-version: '3.2'
5858
bundler-cache: true
5959

6060
- name: Setup Pages

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
source 'https://rubygems.org'
22

3-
ruby '>= 3.1.0'
3+
ruby '>= 3.2.0'
44

55
gem 'github-pages', '~> 232', group: :jekyll_plugins
66
gem 'html-proofer', '~> 3.19.4'
7-
gem 'jekyll-last-modified-at', '~> 1.3.2'
7+
gem 'jekyll-last-modified-at', '~> 1.3.2'
8+
gem 'nokogiri', '>= 1.19.1'

Gemfile.lock

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,10 @@ GEM
248248
minitest (5.27.0)
249249
net-http (0.9.1)
250250
uri (>= 0.11.1)
251-
nokogiri (1.18.10)
251+
nokogiri (1.19.1)
252252
mini_portile2 (~> 2.8.2)
253253
racc (~> 1.4)
254-
nokogiri (1.18.10-arm64-darwin)
254+
nokogiri (1.19.1-arm64-darwin)
255255
racc (~> 1.4)
256256
octokit (4.25.1)
257257
faraday (>= 1, < 3)
@@ -295,9 +295,13 @@ PLATFORMS
295295
ruby
296296

297297
DEPENDENCIES
298-
github-pages (>= 232)
298+
github-pages (~> 232)
299299
html-proofer (~> 3.19.4)
300-
jekyll-last-modified-at (>= 1.3.0)
300+
jekyll-last-modified-at (~> 1.3.2)
301+
nokogiri (>= 1.19.1)
302+
303+
RUBY VERSION
304+
ruby 3.2.7p253
301305

302306
BUNDLED WITH
303307
2.4.17

0 commit comments

Comments
 (0)