Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/upload-artifact from 3 to 4 #7075

Merged
merged 3 commits into from
Dec 26, 2023
Merged
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
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