Skip to content

Commit

Permalink
Use actions/upload-artifact and actions/download-artifact v4
Browse files Browse the repository at this point in the history
  • Loading branch information
franmomu committed Feb 11, 2024
1 parent e6b600e commit 91dd468
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:
run: "vendor/bin/phpunit -c tests --coverage-clover coverage.xml"

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

lint-doctrine-xml-schema:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
fetch-depth: 2

- name: "Download coverage files"
uses: "actions/download-artifact@v3"
uses: "actions/download-artifact@v4"
with:
path: "reports"

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"doctrine/mongodb-odm": "^2.3",
"doctrine/orm": "^2.14.0",
"friendsofphp/php-cs-fixer": "^3.14.0",
"nesbot/carbon": "^2.71 || 3.x-dev as 3.0",
"nesbot/carbon": "^2.71 || ^3.0",
"phpstan/phpstan": "^1.10.2",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
Expand Down

0 comments on commit 91dd468

Please sign in to comment.