Skip to content

Commit 91dd468

Browse files
committed
Use actions/upload-artifact and actions/download-artifact v4
1 parent e6b600e commit 91dd468

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
run: "vendor/bin/phpunit -c tests --coverage-clover coverage.xml"
6363

6464
- name: "Upload coverage file"
65-
uses: "actions/upload-artifact@v3"
65+
uses: "actions/upload-artifact@v4"
6666
with:
67-
name: "${{ github.job }}-${{ matrix.php-version }}.coverage"
67+
name: "${{ github.job }}-${{ matrix.php-version }}-${{ matrix.deps }}-coverage"
6868
path: "coverage.xml"
6969

7070
lint-doctrine-xml-schema:
@@ -106,7 +106,7 @@ jobs:
106106
fetch-depth: 2
107107

108108
- name: "Download coverage files"
109-
uses: "actions/download-artifact@v3"
109+
uses: "actions/download-artifact@v4"
110110
with:
111111
path: "reports"
112112

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"doctrine/mongodb-odm": "^2.3",
5959
"doctrine/orm": "^2.14.0",
6060
"friendsofphp/php-cs-fixer": "^3.14.0",
61-
"nesbot/carbon": "^2.71 || 3.x-dev as 3.0",
61+
"nesbot/carbon": "^2.71 || ^3.0",
6262
"phpstan/phpstan": "^1.10.2",
6363
"phpstan/phpstan-doctrine": "^1.0",
6464
"phpstan/phpstan-phpunit": "^1.0",

0 commit comments

Comments
 (0)