Skip to content

Commit

Permalink
chore(deps): bump actions/upload-artifact from 3 to 4 (#7075)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alexis Saettler <[email protected]>
  • Loading branch information
dependabot[bot] and asbiin authored Dec 26, 2023
1 parent c0f24aa commit 28ecadc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Store changelog file
if: steps.semantic.outputs.new_release_published == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: changelog
path: CHANGELOG.md
Expand All @@ -76,7 +76,7 @@ jobs:
with:
ref: v${{ needs.semantic.outputs.new_release_version }}
- name: Download changelog file
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: changelog

Expand Down Expand Up @@ -129,13 +129,13 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Store package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: package
path: ${{ steps.package.outputs.package }}

- name: Store assets
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: assets
path: ${{ steps.package.outputs.assets }}
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ jobs:

- name: Store results
if: matrix.php-version == env.default-php-version && (success() || failure())
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: results
name: results-${{ matrix.php-version }}-${{ matrix.connection }}-${{ matrix.testsuite }}
path: results

###########################
Expand All @@ -155,10 +155,11 @@ jobs:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Download results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: results
pattern: results-*
path: results
merge-multiple: true

- name: Merge junit files
run: |
Expand Down Expand Up @@ -208,10 +209,11 @@ jobs:

steps:
- name: Download results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: results
pattern: results-*
path: results
merge-multiple: true

- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
Expand Down

0 comments on commit 28ecadc

Please sign in to comment.