Skip to content

Commit a611ba0

Browse files
build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 27e7bd0 commit a611ba0

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

.github/workflows/admin-eslint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
id: version
3636
if: ${{ inputs.shopwareVersion == '.auto' || inputs.shopwareVersion == '' }}
3737
- name: Clone Shopware
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
repository: ${{ inputs.shopware-repository || 'shopware/shopware' }}
4141
ref: ${{ steps.version.outputs.shopware-version || inputs.shopwareVersion }}
4242
- name: Clone Extension
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
with:
4545
path: custom/plugins/${{ inputs.extensionName }}
4646

.github/workflows/build-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout Repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: Login into Github Docker Registery
3232
run: echo "${{ secrets.ghToken }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

.github/workflows/build-zip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Build and Validate
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Install shopware-cli
2121
uses: shopware/shopware-cli-action@v2
2222
- name: Build

.github/workflows/cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Setup PHP
2020
uses: shivammathur/setup-php@v2

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
install-storefront: true
7373
install-admin: true
7474
- name: Clone Extension
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676
with:
7777
path: custom/plugins/${{ inputs.extensionName }}
7878
- name: Clone Dependencies

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
env: prod
6161
install: "true"
6262
- name: Clone Extension
63-
uses: actions/checkout@v5
63+
uses: actions/checkout@v6
6464
with:
6565
path: custom/plugins/${{ inputs.extensionName }}
6666
- name: Clone Dependencies

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
composer-root-version: ${{ inputs.composerRootVersion }}
8181
php-extensions: pcov
8282
- name: Clone Extension
83-
uses: actions/checkout@v5
83+
uses: actions/checkout@v6
8484
with:
8585
path: custom/plugins/${{ inputs.extensionName }}
8686
- name: Clone Dependencies

.github/workflows/store-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
environment: ${{ inputs.environment }}
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
with:
4444
# fetch all git entries for changelog generation
4545
fetch-depth: 0

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout code
10-
uses: actions/checkout@v5
10+
uses: actions/checkout@v6
1111
- id: version
1212
uses: ./shopware-version
1313
with:
@@ -44,7 +44,7 @@ jobs:
4444
expected-version: "6.7.2.x"
4545
steps:
4646
- name: Checkout code
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
- name: Test shopware-version
4949
id: version
5050
uses: ./shopware-version

.github/workflows/theme.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{ (github.event.act || !github.event.repository.private) && 'ubuntu-latest' || format('runs-on={0}/runner=sw-amd64', github.run_id) }}
1313
steps:
1414
- uses: runs-on/action@cd2b598b0515d39d78c38a02d529db87d2196d1e # v2.0.3
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616

1717
- name: Build Theme
1818
uses: shopware/github-actions/build-zip@main
@@ -59,7 +59,7 @@ jobs:
5959
test_jest: ${{ steps.should_run.outputs.test_jest }}
6060
steps:
6161
- uses: runs-on/action@cd2b598b0515d39d78c38a02d529db87d2196d1e # v2.0.3
62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v6
6363

6464
- name: Determine whether to run Jest tests
6565
id: should_run
@@ -76,7 +76,7 @@ jobs:
7676
STOREFRONT_PATH: "Resources/app/storefront"
7777
steps:
7878
- uses: runs-on/action@cd2b598b0515d39d78c38a02d529db87d2196d1e # v2.0.3
79-
- uses: actions/checkout@v5
79+
- uses: actions/checkout@v6
8080

8181
- name: Execute Jest tests
8282
working-directory: ${{ env.STOREFRONT_PATH }}

0 commit comments

Comments
 (0)