Skip to content

Commit 7ccba6a

Browse files
chore(deps): update all dependencies
1 parent a921a98 commit 7ccba6a

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v7
2121
with:
2222
fetch-depth: 2
2323

@@ -32,7 +32,7 @@ jobs:
3232
# Install composer dependencies and handle caching in one go.
3333
# @link https://github.com/marketplace/actions/install-composer-dependencies
3434
- name: "Install Composer dependencies"
35-
uses: "ramsey/composer-install@v2"
35+
uses: "ramsey/composer-install@4.0.0"
3636

3737
- name: Run tests
3838
run: composer run phpunit -- --no-coverage
@@ -64,7 +64,7 @@ jobs:
6464

6565
steps:
6666
- name: Checkout
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@v7
6868
with:
6969
fetch-depth: 2
7070

@@ -77,7 +77,7 @@ jobs:
7777
coverage: xdebug
7878

7979
- name: Install Composer dependencies
80-
uses: ramsey/composer-install@v2
80+
uses: ramsey/composer-install@4.0.0
8181

8282
- name: Create data directory
8383
run: |
@@ -124,7 +124,7 @@ jobs:
124124

125125
steps:
126126
- name: Checkout
127-
uses: actions/checkout@v4
127+
uses: actions/checkout@v7
128128
with:
129129
fetch-depth: 2
130130

@@ -139,7 +139,7 @@ jobs:
139139
# Install composer dependencies and handle caching in one go.
140140
# @link https://github.com/marketplace/actions/install-composer-dependencies
141141
- name: "Install Composer dependencies"
142-
uses: "ramsey/composer-install@v2"
142+
uses: "ramsey/composer-install@4.0.0"
143143

144144
- name: Run static code analysis
145145
if: ${{ matrix.tool == 'phpstan' }}
@@ -151,7 +151,7 @@ jobs:
151151

152152
- name: Upload coverage reports to Codecov
153153
if: ${{ matrix.tool == 'code-coverage' }}
154-
uses: codecov/codecov-action@v5
154+
uses: codecov/codecov-action@v7
155155
with:
156156
token: ${{ secrets.CODECOV_TOKEN }}
157157
files: ./.phpunit.cache/clover.xml

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"art4/rector-bc-library": "^1.0",
3434
"behat/behat": "^3.15",
3535
"friendsofphp/php-cs-fixer": "^3.94",
36-
"guzzlehttp/psr7": "^2.8",
36+
"guzzlehttp/psr7": "^3.0",
3737
"php-mock/php-mock-phpunit": "^2.15",
3838
"phpstan/phpstan": "^2.1",
3939
"phpunit/phpunit": "^9.6 || ^10.5 || ^11.5 || ^12.5 || ^13.0",

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
- ./:/var/www/project/ # Location of the project for php-fpm. Note this should be the same for NGINX.*
2626

2727
redmine-dev:
28-
image: redmine:6.1.1
28+
image: redmine:7.0.0
2929
user: "33:33"
3030
ports:
3131
- "3000:3000"
@@ -54,7 +54,7 @@ services:
5454
# - /tests/Behat/behat.yml
5555

5656
redmine-6-1:
57-
image: redmine:6.1.1
57+
image: redmine:7.0.0
5858
user: "33:33"
5959
ports:
6060
- "5061:3000"
@@ -68,7 +68,7 @@ services:
6868
- ./.docker/redmine-60101_data/sqlite:/usr/src/redmine/sqlite
6969

7070
redmine-6-0:
71-
image: redmine:6.0.8
71+
image: redmine:7.0.0
7272
user: "33:33"
7373
ports:
7474
- "5060:3000"
@@ -82,7 +82,7 @@ services:
8282
- ./.docker/redmine-60008_data/sqlite:/usr/src/redmine/sqlite
8383

8484
redmine-5-1:
85-
image: redmine:5.1.11
85+
image: redmine:7.0.0
8686
user: "33:33"
8787
ports:
8888
- "5051:3000"

0 commit comments

Comments
 (0)