Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- run: composer pest:unit -- --coverage-clover coverage-unit.xml --ci

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: coverage
path: coverage-unit.xml
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

- run: box compile

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: phar
path: phar/php-matrix
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
- run: mkdir -p out
- run: spc micro:combine phar/php-matrix --output out/php-matrix

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: php-matrix_${{ matrix.variant }}
path: out/php-matrix
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Merge binary artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v5
with:
name: binaries
pattern: php-matrix_*
Expand Down
Loading