Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 2

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 2

Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- ./:/var/www/project/ # Location of the project for php-fpm. Note this should be the same for NGINX.*

redmine-dev:
image: redmine:6.0.5
image: redmine:6.1.0
ports:
- "3000:3000"
environment:
Expand All @@ -27,7 +27,7 @@ services:
# - /tests/Behat/behat.yml

redmine-60005:
image: redmine:6.0.5
image: redmine:6.1.0
ports:
- "5060:3000"
environment:
Expand All @@ -40,7 +40,7 @@ services:
- ./.docker/redmine-60005_data/sqlite:/usr/src/redmine/sqlite

redmine-50108:
image: redmine:5.1.8
image: redmine:6.1.0
user: "1000:1000"
ports:
- "5051:3000"
Expand All @@ -52,7 +52,7 @@ services:
- ./.docker/redmine-50108_data/sqlite:/usr/src/redmine/sqlite

redmine-50012:
image: redmine:5.0.12
image: redmine:6.1.0
user: "1000:1000"
ports:
- "5050:3000"
Expand Down
Loading