Skip to content

Commit

Permalink
Upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
jissereitsma committed Dec 11, 2024
1 parent 80b47ad commit dbd030b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 18 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/extdn-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ jobs:
MODULE_NAME: ${{ secrets.MODULE_NAME }}
COMPOSER_NAME: ${{ secrets.COMPOSER_NAME }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cache Composer dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}

- uses: extdn/github-actions-m2/magento-integration-tests/8.1@master
- uses: extdn/github-actions-m2/magento-integration-tests/8.3@master
env:
MAGENTO_VERSION: '2.4.5-p1'
MAGENTO_VERSION: '2.4.7-p2'
COMPOSER_VERSION: 2
with:
magento_pre_install_script: .github/workflows/extdn-integration-tests-pre-install.sh
magento_post_install_script: .github/workflows/extdn-integration-tests-post-install.sh
magento_post_install_script: .github/workflows/extdn-integration-tests-post-install.sh
6 changes: 3 additions & 3 deletions .github/workflows/extdn-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ jobs:
name: PHPStan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cache Composer dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}

- uses: docker://extdn/magento-phpstan-action:7.4-latest
- uses: docker://extdn/magento-phpstan-action:8.3-latest
with:
composer_name: ${{ secrets.COMPOSER_NAME }}
composer_version: 2
Expand Down
15 changes: 5 additions & 10 deletions .github/workflows/extdn-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,15 @@ jobs:
MODULE_NAME: ${{ secrets.MODULE_NAME }}
COMPOSER_NAME: ${{ secrets.COMPOSER_NAME }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cache Composer dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}

- uses: extdn/github-actions-m2/magento-unit-tests/7.3@master
- uses: extdn/github-actions-m2/magento-unit-tests/8.3@master
env:
MAGENTO_VERSION: '2.3.7-p3'
COMPOSER_VERSION: 1

- uses: extdn/github-actions-m2/magento-unit-tests/8.1@master
env:
MAGENTO_VERSION: '2.4.5-p1'
COMPOSER_VERSION: 2
MAGENTO_VERSION: '2.4.7-p3'
COMPOSER_VERSION: 2

0 comments on commit dbd030b

Please sign in to comment.