Skip to content

Commit fc73fe3

Browse files
Update github actions
1 parent 38043b9 commit fc73fe3

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

.github/workflows/brakeman.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212

1313
- name: Install package dependencies
1414
run: >
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Ruby
2323
uses: ruby/setup-ruby@v1
2424
with:
25-
ruby-version: 3.2
25+
ruby-version: 3.3
2626
bundler-cache: true
2727

2828
- name: Run bundler

.github/workflows/rubocop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212

1313
- name: Setup gems
1414
run: |
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Ruby
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: 3.2
20+
ruby-version: 3.3
2121
bundler-cache: true
2222

2323
- name: Run bundler

.github/workflows/tests.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,19 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
ruby: ['2.7', '3.0', '3.1', '3.2']
14-
redmine: ['5.0-stable', '5.1-stable', 'master']
13+
ruby: ['3.1', '3.2', '3.3', '3.4']
14+
redmine: ['6.0-stable', 'master']
1515
db: ['postgres', 'mysql']
1616
exclude:
17-
- ruby: '3.2'
18-
redmine: 5.0-stable
17+
- ruby: '3.1'
18+
redmine: master
19+
- ruby: '3.4'
20+
redmine: 6.0-stable
1921
fail-fast: false
2022

2123
services:
2224
postgres:
23-
image: postgres:16
25+
image: postgres:17
2426
env:
2527
POSTGRES_DB: redmine
2628
POSTGRES_USER: postgres
@@ -54,14 +56,14 @@ jobs:
5456
if: matrix.db == 'mysql'
5557

5658
- name: Checkout Redmine
57-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
5860
with:
5961
repository: redmine/redmine
6062
ref: ${{ matrix.redmine }}
6163
path: redmine
6264

6365
- name: Checkout redmine_ref_issues
64-
uses: actions/checkout@v4
66+
uses: actions/checkout@v5
6567
with:
6668
path: redmine/plugins/redmine_ref_issues
6769

0 commit comments

Comments
 (0)