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
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

# Upload compiled PHAR as artifact
- name: Upload artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: phar
path: |
Expand All @@ -66,7 +66,7 @@ jobs:

# Download PHAR
- name: Download artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: phar
path: .build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
working-directory: .build/coverage
run: sed -i 's#/home/runner/work/frontend-asset-handler/frontend-asset-handler#${{ github.workspace }}#g' clover.xml
- name: Upload coverage artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage
path: .build/coverage/clover.xml
Expand All @@ -88,7 +88,7 @@ jobs:
# Download artifact
- name: Download coverage artifact
id: download
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: coverage

Expand Down
Loading