Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/ort.yml
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ jobs:

- name: Upload the final package list
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: final-package-list-${{ steps.date.outputs.date }}
path: |
Expand All @@ -316,7 +316,7 @@ jobs:

- name: Upload the skipped package list
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: skipped-package-list-${{ steps.date.outputs.date }}
path: |
Expand All @@ -325,7 +325,7 @@ jobs:

- name: Upload the unknown/unapproved package list
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: unapproved-package-list-${{ steps.date.outputs.date }}
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
- name: Upload logs and reports
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-report-php-${{ matrix.php }}-${{ matrix.engine.type }}-${{ matrix.engine.version }}-${{ matrix.host.RUNNER }}
path: |
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
- name: Upload ASAN logs and reports
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: asan-test-report-php-${{ matrix.engine.type }}-${{ matrix.engine.version }}
path: |
Expand Down Expand Up @@ -805,7 +805,7 @@ jobs:
- name: Upload Valgrind logs and reports
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: valgrind-test-report-php-${{ matrix.engine.type }}-${{ matrix.engine.version }}
path: |
Expand Down Expand Up @@ -1048,7 +1048,7 @@ jobs:
- name: Upload test reports
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-reports-php-${{ matrix.php }}-${{ matrix.engine.type }}-${{ matrix.engine.version }}-${{ env.IMAGE }}-${{ matrix.host.ARCH }}
path: |
Expand Down Expand Up @@ -1112,7 +1112,7 @@ jobs:
- name: Upload test reports
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-reports-modules
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-pecl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
echo "=== Package builds successfully ==="

- name: Upload package artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: valkey-glide-php-${{ steps.version.outputs.version }}
path: |
Expand Down
Loading