Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3111468

Browse files
committedMar 3, 2024·
Bump CI workflows
1 parent 52a6a21 commit 3111468

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed
 

‎.github/workflows/continuous-integration.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ jobs:
9797
ORM_PROXY_IMPLEMENTATION: "${{ matrix.proxy }}"
9898

9999
- name: "Upload coverage file"
100-
uses: "actions/upload-artifact@v3"
100+
uses: "actions/upload-artifact@v4"
101101
with:
102-
name: "phpunit-${{ matrix.extension }}-${{ matrix.php-version }}-${{ matrix.dbal-version }}-coverage"
102+
name: "phpunit-${{ matrix.extension }}-${{ matrix.php-version }}-${{ matrix.dbal-version }}-${{ matrix.proxy }}-coverage"
103103
path: "coverage*.xml"
104104

105105

@@ -170,9 +170,9 @@ jobs:
170170
run: "vendor/bin/phpunit -c ci/github/phpunit/pdo_pgsql.xml --coverage-clover=coverage.xml"
171171

172172
- name: "Upload coverage file"
173-
uses: "actions/upload-artifact@v3"
173+
uses: "actions/upload-artifact@v4"
174174
with:
175-
name: "${{ github.job }}-${{ matrix.postgres-version }}-${{ matrix.php-version }}-${{ matrix.dbal-version }}-coverage"
175+
name: "${{ github.job }}-${{ matrix.postgres-version }}-${{ matrix.php-version }}-${{ matrix.dbal-version }}-${{ matrix.extension }}-coverage"
176176
path: "coverage.xml"
177177

178178

@@ -240,7 +240,7 @@ jobs:
240240
run: "vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml --coverage-clover=coverage.xml"
241241

242242
- name: "Upload coverage file"
243-
uses: "actions/upload-artifact@v3"
243+
uses: "actions/upload-artifact@v4"
244244
with:
245245
name: "${{ github.job }}-${{ matrix.mariadb-version }}-${{ matrix.extension }}-${{ matrix.php-version }}-${{ matrix.dbal-version }}-coverage"
246246
path: "coverage.xml"
@@ -317,7 +317,7 @@ jobs:
317317
ENABLE_SECOND_LEVEL_CACHE: 1
318318

319319
- name: "Upload coverage files"
320-
uses: "actions/upload-artifact@v3"
320+
uses: "actions/upload-artifact@v4"
321321
with:
322322
name: "${{ github.job }}-${{ matrix.mysql-version }}-${{ matrix.extension }}-${{ matrix.php-version }}-${{ matrix.dbal-version }}-coverage"
323323
path: "coverage*.xml"
@@ -372,7 +372,7 @@ jobs:
372372
fetch-depth: 2
373373

374374
- name: "Download coverage files"
375-
uses: "actions/download-artifact@v3"
375+
uses: "actions/download-artifact@v4"
376376
with:
377377
path: "reports"
378378

‎.github/workflows/documentation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: "shivammathur/setup-php@v2"
2828
with:
2929
coverage: "none"
30-
php-version: "8.2"
30+
php-version: "8.3"
3131

3232
- name: "Remove existing composer file"
3333
run: "rm composer.json"

‎.github/workflows/release-on-milestone-closed.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
release:
10-
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@3.0.0"
10+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@4.0.0"
1111
secrets:
1212
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1313
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

‎.github/workflows/static-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: "shivammathur/setup-php@v2"
4949
with:
5050
coverage: "none"
51-
php-version: "8.2"
51+
php-version: "8.3"
5252

5353
- name: "Require specific DBAL version"
5454
run: "composer require doctrine/dbal ^${{ matrix.dbal-version }} --no-update"
@@ -89,7 +89,7 @@ jobs:
8989
uses: "shivammathur/setup-php@v2"
9090
with:
9191
coverage: "none"
92-
php-version: "8.2"
92+
php-version: "8.3"
9393

9494
- name: "Require specific persistence version"
9595
run: "composer require doctrine/persistence ^3.1 --no-update"

0 commit comments

Comments
 (0)
Please sign in to comment.