From 5c5c55fd53fcb1fff30f4d1b1ff24aafa3df71ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Jan 2026 15:34:34 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-zip.yml | 2 +- .github/workflows/e2e.yml | 4 ++-- .github/workflows/store-release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-zip.yml b/.github/workflows/build-zip.yml index 236a4ea..8145798 100644 --- a/.github/workflows/build-zip.yml +++ b/.github/workflows/build-zip.yml @@ -26,7 +26,7 @@ jobs: - name: Validate run: shopware-cli extension validate ${{ inputs.extensionName }}.zip - name: Upload artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ inputs.extensionName }} path: ${{ inputs.extensionName }}.zip diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 4148584..cc87fab 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -110,13 +110,13 @@ jobs: fi - name: Upload Playwright Artifacts if: ${{ inputs.e2eTestFramework == 'playwright' && failure() }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: playwright-screenshots path: custom/plugins/${{ inputs.extensionName }}/${{ inputs.e2ePath }}/test-results - name: Upload Cypress Artifacts if: ${{ inputs.e2eTestFramework == 'cypress' && failure() }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: cypress-screenshots path: custom/plugins/${{ inputs.extensionName }}/${{ inputs.e2ePath }}/cypress/screenshots \ No newline at end of file diff --git a/.github/workflows/store-release.yml b/.github/workflows/store-release.yml index 47ecad0..daee2b2 100644 --- a/.github/workflows/store-release.yml +++ b/.github/workflows/store-release.yml @@ -54,7 +54,7 @@ jobs: shopware-cli extension zip --git-commit ${{ github.sha }} "${{ inputs.path }}" --release mv ${{ inputs.extensionName }}-${{ github.sha }}.zip ${{ inputs.extensionName }}.zip - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ inputs.extensionName }} path: ${{ inputs.extensionName }}.zip