Skip to content

Commit

Permalink
Fixing Deprecation Github Actions from v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
ekojs committed Jan 30, 2025
1 parent 134bc23 commit 7acda76
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
which tar && tar -czvf coverage.tar.gz build/logs/html
- name: Upload coverage as artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mycoverage_${{ runner.os }}_${{ matrix.php-versions }}
path: coverage.tar.gz
Expand Down Expand Up @@ -80,6 +80,7 @@ jobs:
- Github Pages for PCOV Code Coverage php 8.2, 8.3
### Change
- Fixing Deprecation Github Actions from v3 to v4
- Using php >= 8.2, for php below that use version 2 "composer require ekojs/otp:2.0.0"
draft: false
Expand All @@ -94,9 +95,11 @@ jobs:
- uses: actions/checkout@v3

- name: Download coverage
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: mycoverage_Linux_8.3
path: coverage.tar.gz
overwrite: true

- shell: bash
run: |
Expand Down

0 comments on commit 7acda76

Please sign in to comment.