Skip to content
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
14 changes: 7 additions & 7 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install dependencies
run: composer install
- name: Build phar
run: composer run build-phar
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4
- uses: actions/upload-artifact@v7
with:
name: installer-phar
path: shopware-installer.phar.php
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
path: new-shopware

- name: Cache Storefront npm packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: new-shopware/src/Storefront/Resources/app/storefront/node_modules
key: ${{ runner.os }}-storefront-${{ hashFiles('new-shopware/src/Storefront/Resources/app/storefront/package-lock.json') }}
Expand All @@ -89,7 +89,7 @@ jobs:
composer -d src/Elasticsearch config version ${SW_RECOVERY_NEXT_VERSION}

- name: Checkout template
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 4
uses: actions/checkout@v6
with:
repository: shopware/production
path: old-shopware
Expand All @@ -114,7 +114,7 @@ jobs:
bin/console system:install --basic-setup --drop-database --create-database

- name: Download WebInstaller
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # 4
uses: actions/download-artifact@v8
with:
name: installer-phar
path: old-shopware/public
Expand All @@ -123,7 +123,7 @@ jobs:
working-directory: old-shopware
run: symfony server:start -d

- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # 4
- uses: actions/setup-node@v6
with:
node-version: 22

Expand All @@ -144,7 +144,7 @@ jobs:
working-directory: new-shopware/tests/acceptance
run: npx playwright test --project=Update --trace=on

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4
- uses: actions/upload-artifact@v7
if: always()
with:
name: playwright-report-update-${{ matrix.update.type }}-${{ matrix.update.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-cs-fixer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
php-cs-fixer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
attestations: write
artifact-metadata: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -29,7 +29,7 @@ jobs:
run: composer build-phar

- name: Attest Build Provenance
uses: actions/attest-build-provenance@v3
uses: actions/attest-build-provenance@v4
with:
subject-path: shopware-installer.phar.php

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -24,7 +24,7 @@ jobs:
run: vendor/bin/phpunit --coverage-clover=coverage.xml

- name: Upload Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml

Expand All @@ -38,7 +38,7 @@ jobs:
- '8.3'
- '8.4'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
Loading