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
4 changes: 2 additions & 2 deletions .github/workflows/admin-eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
id: version
if: ${{ inputs.shopwareVersion == '.auto' || inputs.shopwareVersion == '' }}
- name: Clone Shopware
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ inputs.shopware-repository || 'shopware/shopware' }}
ref: ${{ steps.version.outputs.shopware-version || inputs.shopwareVersion }}
- name: Clone Extension
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: custom/plugins/${{ inputs.extensionName }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Login into Github Docker Registery
run: echo "${{ secrets.ghToken }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Build and Validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install shopware-cli
uses: shopware/shopware-cli-action@v1
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cs-fixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
install-storefront: true
install-admin: true
- name: Clone Extension
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: custom/plugins/${{ inputs.extensionName }}
- name: Clone Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
env: prod
install: "true"
- name: Clone Extension
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: custom/plugins/${{ inputs.extensionName }}
- name: Clone Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
composer-root-version: ${{ inputs.composerRootVersion }}
php-extensions: pcov
- name: Clone Extension
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: custom/plugins/${{ inputs.extensionName }}
- name: Clone Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/store-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
environment: ${{ inputs.environment }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# fetch all git entries for changelog generation
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- id: version
uses: ./shopware-version
with:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
expected-version: "6.7.2.x"
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Test shopware-version
id: version
uses: ./shopware-version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/theme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ (github.event.act || !github.event.repository.private) && 'ubuntu-latest' || format('runs-on={0}/runner=sw-amd64', github.run_id) }}
steps:
- uses: runs-on/action@cd2b598b0515d39d78c38a02d529db87d2196d1e # v2.0.3
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build Theme
uses: shopware/github-actions/build-zip@main
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
test_jest: ${{ steps.should_run.outputs.test_jest }}
steps:
- uses: runs-on/action@cd2b598b0515d39d78c38a02d529db87d2196d1e # v2.0.3
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Determine whether to run Jest tests
id: should_run
Expand All @@ -76,7 +76,7 @@ jobs:
STOREFRONT_PATH: "Resources/app/storefront"
steps:
- uses: runs-on/action@cd2b598b0515d39d78c38a02d529db87d2196d1e # v2.0.3
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Execute Jest tests
working-directory: ${{ env.STOREFRONT_PATH }}
Expand Down