Skip to content

Commit

Permalink
Upgrade dependencies to shop 7.2
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Fedurtsya <anton@fedurtsya.com>
  • Loading branch information
Sieg committed Jul 31, 2024
1 parent 01b44cc commit fc75c4b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dispatch_module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:
type: choice
options:
- 'no'
- 'PHP8.1/MySQL5.7'
- 'PHP8.1/MySQL8.0'
- 'PHP8.2/MySQL5.7'
- 'PHP8.2/MySQL8.0'
default: 'PHP8.1/MySQL8.0'
- 'PHP8.3/MySQL5.7'
- 'PHP8.3/MySQL8.0'
default: 'PHP8.2/MySQL8.0'
description: 'Limit to one PHP/MySQL combination'

jobs:
Expand All @@ -26,14 +26,14 @@ jobs:
# shellcheck disable=SC2088
case "${{ inputs.limit }}" in
"no") LIMIT='';;
"PHP8.1/MySQL5.7") LIMIT='~/defaults/php8.1_mysql5.7_only.yml,' ;;
"PHP8.1/MySQL8.0") LIMIT='~/defaults/php8.1_mysql8.0_only.yml,' ;;
"PHP8.2/MySQL5.7") LIMIT='~/defaults/php8.2_mysql5.7_only.yml,' ;;
"PHP8.2/MySQL8.0") LIMIT='~/defaults/php8.2_mysql8.0_only.yml,' ;;
"PHP8.3/MySQL5.7") LIMIT='~/defaults/php8.3_mysql5.7_only.yml,' ;;
"PHP8.3/MySQL8.0") LIMIT='~/defaults/php8.3_mysql8.0_only.yml,' ;;
esac
# shellcheck disable=SC2088
TESTPLAN="~/defaults/7.1.x.yml,${LIMIT}~/module-wysiwyg.yml,~/_custom.yml"
TESTPLAN="~/defaults/7.2.x.yml,${LIMIT}~/module-wysiwyg.yml,~/_custom.yml"
echo "testplan=${TESTPLAN}" | tee -a "${GITHUB_OUTPUT}"
dispatch_stable:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
schedule_matrix:
uses: oxid-eSales/github-actions/.github/workflows/universal_workflow_light.yml@v4
with:
testplan: '~/defaults/7.1.x.yml,~/module-wysiwyg.yml,~/_custom.yml'
testplan: '~/defaults/7.2.x.yml,~/module-wysiwyg.yml,~/_custom.yml'
runs_on: '"ubuntu-latest"'
defaults: 'v4'
plan_folder: '.github/oxid-esales'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on:
push: {}

jobs:
php81_mysql80:
php82_mysql80:
uses: oxid-eSales/github-actions/.github/workflows/universal_workflow_light.yml@v4
with:
testplan: '~/defaults/7.1.x.yml,~/defaults/php8.1_mysql8.0_only.yml,~/module-wysiwyg.yml'
testplan: '~/defaults/7.2.x.yml,~/defaults/php8.2_mysql8.0_only.yml,~/module-wysiwyg.yml'
runs_on: '"ubuntu-latest"'
defaults: 'v4'
plan_folder: '.github/oxid-esales'
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@
"php": ">=8.2",
"symfony/filesystem": "*",
"ext-gd": "*",
"oxid-esales/media-library-module": "dev-b-7.1.x"
"oxid-esales/media-library-module": "dev-b-7.2.x"
},
"require-dev": {
"phpstan/phpstan": "^1.8.11",
"squizlabs/php_codesniffer": "3.*",
"oxid-esales/oxideshop-ce": "dev-b-7.1.x",
"oxid-esales/oxideshop-ce": "dev-b-7.2.x",
"phpunit/phpunit": "^11.2",
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-db": "^3.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-webdriver": "^4.0",
"oxid-esales/codeception-modules": "dev-b-7.1.x",
"oxid-esales/codeception-page-objects": "dev-b-7.1.x"
"oxid-esales/codeception-modules": "dev-b-7.2.x",
"oxid-esales/codeception-page-objects": "dev-b-7.2.x"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit fc75c4b

Please sign in to comment.