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 5694ab3 commit 2ea62e3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/extdn-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ 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') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/extdn-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ jobs:
name: PHPStan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: "Determine composer cache directory"
id: "determine-composer-cache-directory"
run: "echo \"::set-output name=directory::$(composer config cache-dir)\""

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

- uses: extdn/github-actions-m2/magento-phpstan/8.3@master
env:
MAGENTO_VERSION: '2.4.7-p1'
MAGENTO_VERSION: '2.4.7-p3'
COMPOSER_VERSION: 2
with:
composer_name: ${{ secrets.COMPOSER_NAME }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/extdn-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
MODULE_NAME: ${{ secrets.MODULE_NAME }}
COMPOSER_NAME: ${{ secrets.COMPOSER_NAME }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

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

- uses: extdn/github-actions-m2/magento-unit-tests/8.3@master
env:
MAGENTO_VERSION: '2.4.7-p2'
MAGENTO_VERSION: '2.4.7-p3'
COMPOSER_VERSION: 2
with:
magento_pre_install_script: .github/workflows/extdn-phpstan-pre-install.sh

0 comments on commit 2ea62e3

Please sign in to comment.