Skip to content

Commit 7aeb7a2

Browse files
authored
Merge pull request #83 from kenhys/ci-update
Add missing Ruby 3.3/3.4 for CI
2 parents 71ecce2 + 3dd5faa commit 7aeb7a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
11+
ruby: [ '3.1', '3.2', '3.3', '3.4' ]
1212
os: [ 'ubuntu-latest' ]
1313
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- uses: ruby/setup-ruby@v1
1717
with:
1818
ruby-version: ${{ matrix.ruby }}

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
11+
ruby: [ '3.1', '3.2', '3.3', '3.4' ]
1212
os: [ 'windows-latest' ]
1313
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- uses: ruby/setup-ruby@v1
1717
with:
1818
ruby-version: ${{ matrix.ruby }}

0 commit comments

Comments
 (0)