Skip to content

Commit df509d3

Browse files
Fix Ruby versions in Pro workflows to match main package
- pro-lint.yml: Use Ruby 3 (matches lint-js-and-ruby.yml) - pro-package-tests.yml: Use Ruby 3.2 and 3.4 matrix (matches rspec-package-specs.yml) - pro-integration-tests.yml: Use Ruby 3.4 (matches main package pattern) This aligns Pro workflows with the main package's Ruby version strategy.
1 parent a6c6d93 commit df509d3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/pro-integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Ruby
2323
uses: ruby/setup-ruby@v1
2424
with:
25-
ruby-version: 3.3.7
25+
ruby-version: 3.4
2626
bundler: 2.5.4
2727

2828
- name: Setup Node
@@ -109,7 +109,7 @@ jobs:
109109
- name: Setup Ruby
110110
uses: ruby/setup-ruby@v1
111111
with:
112-
ruby-version: 3.3.7
112+
ruby-version: 3.4
113113
bundler: 2.5.4
114114

115115
- name: Setup Node
@@ -279,7 +279,7 @@ jobs:
279279
- name: Setup Ruby
280280
uses: ruby/setup-ruby@v1
281281
with:
282-
ruby-version: 3.3.7
282+
ruby-version: 3.4
283283
bundler: 2.5.4
284284

285285
- name: Setup Node

.github/workflows/pro-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Ruby
2222
uses: ruby/setup-ruby@v1
2323
with:
24-
ruby-version: 3.3.7
24+
ruby-version: 3
2525
bundler: 2.5.4
2626

2727
- name: Setup Node

.github/workflows/pro-package-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
rspec-package-specs:
6666
strategy:
6767
matrix:
68-
ruby-version: ['3.2', '3.3']
68+
ruby-version: ['3.2', '3.4']
6969
runs-on: ubuntu-22.04
7070
steps:
7171
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)