Skip to content

Commit 91900e4

Browse files
committed
Update GHA config
1 parent e2d0781 commit 91900e4

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/workflows/ci.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
ruby:
30+
- '3.3'
31+
- '3.2'
3032
- '3.1'
3133
- '3.0'
32-
- '2.7'
3334
include:
34-
- ruby: '3.1'
35+
- ruby: '3.3'
3536
use_dry_transformer_master: 'true'
3637
use_use_rom_sql_master: 'true'
3738
env:
@@ -44,7 +45,7 @@ jobs:
4445
CODACY_PROJECT_TOKEN: "${{secrets.CODACY_PROJECT_TOKEN}}"
4546
APT_DEPS: libpq-dev libsqlite3-dev
4647
steps:
47-
- uses: actions/checkout@v1
48+
- uses: actions/checkout@v2
4849
- name: Install package dependencies
4950
run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
5051
- name: Set up Ruby
@@ -67,7 +68,7 @@ jobs:
6768
coverage-reports: coverage/coverage.xml
6869
services:
6970
db:
70-
image: postgres:10.8
71+
image: postgres:16.2
7172
env:
7273
POSTGRES_USER: runner
7374
POSTGRES_PASSWORD: ''
@@ -84,13 +85,13 @@ jobs:
8485
GITHUB_LOGIN: rom-bot
8586
GITHUB_TOKEN: "${{secrets.GH_PAT}}"
8687
steps:
87-
- uses: actions/checkout@v1
88+
- uses: actions/checkout@v2
8889
- name: Install package dependencies
8990
run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
9091
- name: Set up Ruby
9192
uses: ruby/setup-ruby@v1
9293
with:
93-
ruby-version: 2.6
94+
ruby-version: 3.3
9495
- name: Install dependencies
9596
run: gem install ossy --no-document
9697
- name: Trigger release workflow

.github/workflows/custom/ci.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ jobs:
22
tests:
33
services:
44
db:
5-
image: postgres:10.8
5+
image: postgres:16.2
66
env:
77
POSTGRES_USER: runner
88
POSTGRES_PASSWORD: ""
@@ -13,14 +13,12 @@ jobs:
1313
strategy:
1414
matrix:
1515
ruby:
16+
- "3.3"
17+
- "3.2"
18+
- "3.1"
1619
- "3.0"
17-
- "2.7"
18-
- "2.6"
19-
- "2.5"
20-
- "jruby"
21-
- "truffleruby"
2220
include:
23-
- ruby: "2.7"
21+
- ruby: "3.3"
2422
coverage: "true"
2523
use_transproc_master: "true"
2624
use_use_rom_sql_master: "true"

0 commit comments

Comments
 (0)