Skip to content

Commit 02fc461

Browse files
committed
Upgrades
1 parent 15b9b4b commit 02fc461

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/extdn-integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ jobs:
3535
COMPOSER_NAME: ${{ secrets.COMPOSER_NAME }}
3636
MAGENTO_POST_INSTALL_SCRIPT: .github/workflows/extdn-integration-tests-post-install.sh
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v4
3939
- name: Cache Composer dependencies
40-
uses: actions/cache@v2
40+
uses: actions/cache@v4
4141
with:
4242
path: /tmp/composer-cache
4343
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
4444

4545
- uses: extdn/github-actions-m2/magento-integration-tests/8.3@master
4646
env:
47-
MAGENTO_VERSION: '2.4.7'
47+
MAGENTO_VERSION: '2.4.7-p3'
4848
with:
4949
magento_pre_install_script: .github/workflows/extdn-integration-tests-pre-install.sh
5050
magento_post_install_script: .github/workflows/extdn-integration-tests-post-install.sh

.github/workflows/extdn-phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ jobs:
66
name: PHPStan
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010

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

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

.github/workflows/extdn-static-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: Static Code Analysis
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
- uses: extdn/github-actions-m2/magento-coding-standard/8.3@master
1111
with:
1212
phpcs_severity: 8

.github/workflows/extdn-unit-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
MODULE_NAME: ${{ secrets.MODULE_NAME }}
1212
COMPOSER_NAME: ${{ secrets.COMPOSER_NAME }}
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515

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

2222
- uses: extdn/github-actions-m2/magento-unit-tests/8.3@master
2323
env:
24-
MAGENTO_VERSION: '2.4.7'
25-
COMPOSER_VERSION: 2
24+
MAGENTO_VERSION: '2.4.7-p3'
25+
COMPOSER_VERSION: 2

0 commit comments

Comments
 (0)