Skip to content

Commit

Permalink
Update github action - add redmine 5.1 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Nov 5, 2023
1 parent 774b00d commit 2bfc1c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install package dependencies
run: |
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
ruby-version: 3.2
bundler-cache: true

- name: Run bundler
Expand All @@ -37,9 +37,9 @@ jobs:
bundle exec brakeman -5
- name: Setup node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'

- run: yarn install

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2']
redmine: ['5.0-stable', 'master']
redmine: ['5.0-stable', '5.1-stable', 'master']
db: ['postgres', 'mysql']
exclude:
- ruby: '3.2'
redmine: '5.0-stable'
redmine: 5.0-stable
fail-fast: false

services:
Expand All @@ -35,14 +35,14 @@ jobs:
steps:
- name: Checkout Redmine
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: redmine/redmine
ref: ${{ matrix.redmine }}
path: redmine

- name: Checkout redmine_lightbox
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: AlphaNodes/redmine_lightbox
path: redmine/plugins/redmine_lightbox
Expand Down

0 comments on commit 2bfc1c3

Please sign in to comment.