Skip to content

Commit ad2cbb5

Browse files
authored
Merge pull request #168 from petergoldstein/feature/add_ruby_3_2
Adds Ruby 3.2 to the CI matrix. Also updates checkout action version.
2 parents b93ac63 + dd31c3c commit ad2cbb5

File tree

4 files changed

+21
-16
lines changed

4 files changed

+21
-16
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ on: [push, pull_request]
33
jobs:
44
tests:
55
strategy:
6+
fail-fast: false
67
matrix:
78
ruby-version:
89
- "2.7"
910
- "3.0"
1011
- "3.1"
12+
- "3.2"
1113
gemfile:
1214
- Gemfile
1315
- gemfiles/rails_7_propshaft.gemfile
@@ -22,7 +24,7 @@ jobs:
2224
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
2325

2426
steps:
25-
- uses: actions/checkout@v1
27+
- uses: actions/checkout@v3
2628

2729
- name: Install Ruby
2830
uses: ruby/setup-ruby@v1

Gemfile.lock

+6-5
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,14 @@ GEM
103103
mini_mime (1.1.2)
104104
minitest (5.16.2)
105105
nio4r (2.5.8)
106-
nokogiri (1.13.6-arm64-darwin)
106+
nokogiri (1.14.0-arm64-darwin)
107107
racc (~> 1.4)
108-
nokogiri (1.13.6-x86_64-darwin)
108+
nokogiri (1.14.0-x86_64-darwin)
109109
racc (~> 1.4)
110-
nokogiri (1.13.6-x86_64-linux)
110+
nokogiri (1.14.0-x86_64-linux)
111111
racc (~> 1.4)
112112
public_suffix (4.0.7)
113-
racc (1.6.0)
113+
racc (1.6.2)
114114
rack (2.2.4)
115115
rack-test (2.0.2)
116116
rack (>= 1.3)
@@ -183,6 +183,7 @@ PLATFORMS
183183
arm64-darwin-21
184184
x86_64-darwin-20
185185
x86_64-darwin-21
186+
x86_64-darwin-22
186187
x86_64-linux
187188

188189
DEPENDENCIES
@@ -199,4 +200,4 @@ DEPENDENCIES
199200
webdrivers
200201

201202
BUNDLED WITH
202-
2.3.17
203+
2.4.3

gemfiles/rails_7_propshaft.gemfile.lock

+6-5
Original file line numberDiff line numberDiff line change
@@ -124,19 +124,19 @@ GEM
124124
net-protocol
125125
timeout
126126
nio4r (2.5.8)
127-
nokogiri (1.13.6-arm64-darwin)
127+
nokogiri (1.14.0-arm64-darwin)
128128
racc (~> 1.4)
129-
nokogiri (1.13.6-x86_64-darwin)
129+
nokogiri (1.14.0-x86_64-darwin)
130130
racc (~> 1.4)
131-
nokogiri (1.13.6-x86_64-linux)
131+
nokogiri (1.14.0-x86_64-linux)
132132
racc (~> 1.4)
133133
propshaft (0.6.4)
134134
actionpack (>= 7.0.0)
135135
activesupport (>= 7.0.0)
136136
rack
137137
railties (>= 7.0.0)
138138
public_suffix (4.0.7)
139-
racc (1.6.0)
139+
racc (1.6.2)
140140
rack (2.2.4)
141141
rack-test (2.0.2)
142142
rack (>= 1.3)
@@ -202,6 +202,7 @@ GEM
202202
PLATFORMS
203203
arm64-darwin-21
204204
x86_64-darwin-21
205+
x86_64-darwin-22
205206
x86_64-linux
206207

207208
DEPENDENCIES
@@ -219,4 +220,4 @@ DEPENDENCIES
219220
webdrivers
220221

221222
BUNDLED WITH
222-
2.3.17
223+
2.4.3

gemfiles/rails_7_sprockets.gemfile.lock

+6-5
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,14 @@ GEM
124124
net-protocol
125125
timeout
126126
nio4r (2.5.8)
127-
nokogiri (1.13.6-arm64-darwin)
127+
nokogiri (1.14.0-arm64-darwin)
128128
racc (~> 1.4)
129-
nokogiri (1.13.6-x86_64-darwin)
129+
nokogiri (1.14.0-x86_64-darwin)
130130
racc (~> 1.4)
131-
nokogiri (1.13.6-x86_64-linux)
131+
nokogiri (1.14.0-x86_64-linux)
132132
racc (~> 1.4)
133133
public_suffix (4.0.7)
134-
racc (1.6.0)
134+
racc (1.6.2)
135135
rack (2.2.4)
136136
rack-test (2.0.2)
137137
rack (>= 1.3)
@@ -204,6 +204,7 @@ GEM
204204
PLATFORMS
205205
arm64-darwin-21
206206
x86_64-darwin-21
207+
x86_64-darwin-22
207208
x86_64-linux
208209

209210
DEPENDENCIES
@@ -221,4 +222,4 @@ DEPENDENCIES
221222
webdrivers
222223

223224
BUNDLED WITH
224-
2.3.17
225+
2.4.3

0 commit comments

Comments
 (0)