Skip to content

Commit 63cbf47

Browse files
authored
- Ensuring that the source code base is pinned to Ruby release 3.3.0 (#2060)
- Ensuring that the CircleCI build is pinned to NodeJS release 22.9.0
1 parent 461b4e1 commit 63cbf47

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ orbs:
2121
executors:
2222
basic-executor:
2323
docker:
24-
- image: cimg/ruby:3.4-browsers
24+
- image: cimg/ruby:3.3.0-browsers
2525
environment:
2626
RAILS_ENV: ci
2727
resource_class: small
@@ -47,7 +47,7 @@ commands:
4747
steps:
4848
- node/install:
4949
install-yarn: true
50-
node-version: "22.9"
50+
node-version: "22.9.0"
5151
- restore_cache:
5252
name: Restore Yarn Package Cache
5353
key: &yarn_key tiger_data-yarn-cimg-{{ checksum "yarn.lock" }}-2
@@ -103,7 +103,7 @@ commands:
103103
jobs:
104104
bundler_lint:
105105
docker:
106-
- image: cimg/ruby:3.3
106+
- image: cimg/ruby:3.3.0
107107
working_directory: ~/tiger_data
108108
steps:
109109
- checkout
@@ -114,7 +114,7 @@ jobs:
114114

115115
bundler_audit:
116116
docker:
117-
- image: cimg/ruby:3.3
117+
- image: cimg/ruby:3.3.0
118118
working_directory: ~/tiger_data
119119
steps:
120120
- checkout
@@ -170,7 +170,7 @@ jobs:
170170

171171
yarn_lint_format:
172172
docker:
173-
- image: cimg/node:22.20
173+
- image: cimg/node:22.9.0
174174
steps:
175175
- checkout
176176
- install_yarn_dependencies
@@ -183,7 +183,7 @@ jobs:
183183

184184
yarn_test:
185185
docker:
186-
- image: cimg/node:22.20
186+
- image: cimg/node:22.9.0
187187
steps:
188188
- checkout
189189
- install_yarn_dependencies
@@ -211,7 +211,7 @@ jobs:
211211
version: "3.3.0"
212212
- node/install:
213213
install-yarn: true
214-
node-version: "22.9"
214+
node-version: "22.9.0"
215215
- browser-tools/install-chrome
216216
- browser-tools/install-chromedriver
217217
- install_dependencies

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ruby 3.3
1+
ruby 3.3.0
22
nodejs 22.9.0
33
java openjdk-19.0.2
44
yarn 1.22.22

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
source "https://gem.coop"
33
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44

5-
ruby "~> 3.3"
5+
ruby "~> 3.3.0"
66

77
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
88
gem "rails", "~> 7.1"

0 commit comments

Comments
 (0)