Skip to content

Commit a1a3460

Browse files
committed
[CI] Adds Ruby 3.4
1 parent 78580f8 commit a1a3460

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ steps:
88
matrix:
99
setup:
1010
ruby:
11+
- "3.4"
1112
- "3.3"
1213
- "3.2"
1314
- "3.1"
14-
- "3.0"
1515
command: ./.buildkite/run-tests.sh
1616
artifact_paths: "tmp/*"
1717
- wait: ~

.github/workflows/license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v4
88
- uses: ruby/setup-ruby@v1
99
with:
10-
ruby-version: 3
10+
ruby-version: '3.4'
1111
- name: Check license headers
1212
run: |
1313
ruby ./.github/check_license_headers.rb

.github/workflows/rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v4
99
- uses: ruby/setup-ruby@v1
1010
with:
11-
ruby-version: 2.7
11+
ruby-version: 3
1212
- name: Run Rubocop
1313
run: |
1414
gem install rubocop

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
ENDPOINT: http://localhost:8080
88
strategy:
99
matrix:
10-
ruby: [ '3.0', '3.1', '3.2', '3.3' ]
10+
ruby: ['3.1', '3.2', '3.3'] # TODO: Webmock breaking build in 3.4
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)