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
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Run PHPBench
run: make phpbench_main

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
name: Upload the Benchmark results
with:
name: bench-main-result
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
restore-keys: cache-lychee-

- name: Run Lychee
uses: lycheeverse/lychee-action@v2.6.1
uses: lycheeverse/lychee-action@v2.7.0
with:
# To keep in sync with Makefile#lychee
args: "--no-progress '*.md' 'doc/**/*.md' --cache --max-cache-age 1d ."
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Rebuild website
run: make _website_build

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
name: Upload the docs artifact
with:
name: docs-website
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
needs:
- build
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: docs-website
path: dist/website
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
--output bin/box.phar.asc \
bin/box.phar

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
name: Upload the PHAR artifact
with:
name: box-phar
Expand All @@ -89,7 +89,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: box-phar
path: .
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
with:
php-version: '8.2'

- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: box-phar
path: .
Expand Down
Loading