Skip to content

Commit 473ba62

Browse files
authored
Merge pull request #61 from mtsmfm/bump-ci
Bump ruby versions on CI
2 parents 65fc4b9 + 815fdb6 commit 473ba62

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.1.3
1+
FROM ruby:3.2.0
22

33
ARG USERNAME=app
44
ARG USER_UID=1000

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
ref: ${{ matrix.ref }}
2626
- uses: ruby/setup-ruby@v1
2727
with:
28-
ruby-version: "3.1"
28+
ruby-version: "3.2"
2929
bundler-cache: true
3030
- uses: actions/github-script@v6
3131
with:

.github/workflows/generator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
token: ${{ secrets.PAT }}
3030
- uses: ruby/setup-ruby@v1
3131
with:
32-
ruby-version: "3.1"
32+
ruby-version: "3.2"
3333
bundler-cache: true
3434
- uses: actions/setup-node@v3
3535
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111
- uses: ruby/setup-ruby@v1
1212
with:
13-
ruby-version: "3.1"
13+
ruby-version: "3.2"
1414
bundler-cache: true
1515
- run: gem update --system
1616
- run: bundle exec rake release

.github/workflows/ubuntu-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,17 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
18-
ruby: [2.5, 2.6, 2.7, "3.0", "3.1"]
18+
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2"]
1919
steps:
2020
- uses: actions/checkout@v3
2121
- uses: ruby/setup-ruby@v1
2222
with:
2323
ruby-version: ${{ matrix.ruby }}
2424
bundler-cache: true
2525
- run: gem update --system
26+
if: matrix.ruby != '2.5'
2627
- run: bundle exec rake
2728
- run: bundle exec rake
2829
env:
2930
RUBYOPT: --enable-frozen-string-literal
31+
if: matrix.ruby != '2.5'

.github/workflows/windows-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,17 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
18-
ruby: [2.5, 2.6, 2.7, "3.0", "3.1"]
18+
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2"]
1919
steps:
2020
- uses: actions/checkout@v3
2121
- uses: ruby/setup-ruby@v1
2222
with:
2323
ruby-version: ${{ matrix.ruby }}
2424
bundler-cache: true
2525
- run: gem update --system
26+
if: matrix.ruby != '2.5'
2627
- run: bundle exec rake
2728
- run: bundle exec rake
2829
env:
2930
RUBYOPT: --enable-frozen-string-literal
31+
if: matrix.ruby != '2.5'

0 commit comments

Comments
 (0)