Skip to content

Commit

Permalink
NTR: test newer shopware version (#696)
Browse files Browse the repository at this point in the history
Co-authored-by: Vitalij Mik <[email protected]>
  • Loading branch information
BlackScorp and Vitalij Mik authored Jan 24, 2024
1 parent aab2afc commit 95aa056
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-plugin/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
- name: Start Docker
shell: bash
run: |
docker run --rm --name shop --env NODE_VERSION=18 --env PHP_VERSION=8.1 -d dockware/dev:6.5.7.4
docker run --rm --name shop --env NODE_VERSION=18 --env PHP_VERSION=8.1 -d dockware/dev:6.5.8.2
sleep 20
docker logs shop
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_pipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ jobs:
fail-fast: false
matrix:
include:
- shopware: '6.5.7.4'
- shopware: '6.5.8.2'
php: '8.2'
- shopware: '6.5.6.1'
php: '8.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly_pipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ jobs:
fail-fast: false
matrix:
include:
- shopware: '6.5.7.4'
- shopware: '6.5.8.2'
php: '8.2'
- shopware: '6.5.6.1'
php: '8.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_pipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ jobs:
fail-fast: false
matrix:
include:
- shopware: '6.5.7.4'
- shopware: '6.5.8.2'
php: '8.2'
- shopware: '6.5.5.2'
php: '8.2'
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kiener/mollie-payments-plugin",
"description": "Mollie Payments",
"version": "v4.4.1",
"version": "v4.4.2",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
Expand Down
26 changes: 13 additions & 13 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/MolliePayments.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

class MolliePayments extends Plugin
{
const PLUGIN_VERSION = '4.4.1';
const PLUGIN_VERSION = '4.4.2';


/**
Expand Down
1 change: 1 addition & 0 deletions switch-composer.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
$composerContent = file_get_contents(__DIR__ . '/composer.json');
$composerContent = json_decode($composerContent, true);


// >= 6.4.0.0
const SW_VERSIONS_RELEASE = '>=6.4.0';
const SW_VERSIONS_DEV = '*';
Expand Down

0 comments on commit 95aa056

Please sign in to comment.