Skip to content

Commit e753ced

Browse files
committed
Update GitHub actions testing matrix
1 parent f66733b commit e753ced

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ jobs:
55
name: 'Test Suite'
66
strategy:
77
matrix:
8-
ruby: [2.7.6, 3.0.4, 3.1.2]
8+
ruby: [3.2.8, 3.3.8, 3.4.4]
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: ruby/setup-ruby@v1
1313
with:
1414
ruby-version: ${{ matrix.ruby }}
15-
- uses: actions/cache@v1
15+
- uses: actions/cache@v4
1616
with:
1717
path: vendor/bundle
1818
key: bundle-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}
@@ -26,11 +26,11 @@ jobs:
2626
- uses: actions/checkout@v2
2727
- uses: ruby/setup-ruby@v1
2828
with:
29-
ruby-version: 2.7.0
30-
- uses: actions/cache@v1
29+
ruby-version: 3.2.8
30+
- uses: actions/cache@v4
3131
with:
3232
path: vendor/bundle
33-
key: bundle-2.7.0-${{ hashFiles('**/*.gemspec') }}
34-
restore-keys: bundle-2.7.0
33+
key: bundle-3.2.8-${{ hashFiles('**/*.gemspec') }}
34+
restore-keys: bundle-3.2.8
3535
- run: bundle install --jobs 4 --retry 3 --path vendor/bundle
3636
- run: bundle exec rubocop

0 commit comments

Comments
 (0)