Skip to content

Commit

Permalink
Merge pull request #1169 from ga-devfront/fix/workflows
Browse files Browse the repository at this point in the history
[FIX] old ci to use latest version of packages
  • Loading branch information
M0rgan01 authored Feb 12, 2025
2 parents ae93f1b + 48dac9e commit 13ad9bc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checksUI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:

steps:
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache Playwright browsers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright/
key: ${{ runner.os }}-browsers

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

Expand All @@ -46,16 +46,16 @@ jobs:

steps:
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache Playwright browsers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright/
key: ${{ runner.os }}-browsers

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4

- name: PHP syntax checker 7.1
uses: prestashop/github-action-php-lint/7.1@master
Expand Down Expand Up @@ -53,10 +53,10 @@ jobs:
php-version: '7.1'

- name: Checkout
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4

- name: Cache dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4
with:
path: vendor
key: php-${{ hashFiles('composer.lock') }}
Expand All @@ -79,7 +79,7 @@ jobs:
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv, ext-zip
- uses: actions/checkout@v4.1.3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -95,7 +95,7 @@ jobs:
presta-versions: ['1.7.2.5', '1.7.3.4', '1.7.4.4', '1.7.5.1', '1.7.6', '1.7.7', '1.7.8', '8.0.0', 'latest']
steps:
- name: Checkout
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4

- run: composer install

Expand All @@ -111,7 +111,7 @@ jobs:
name: PHP 5.6 Syntax Check
steps:
- name: Checkout
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
needs: create_artifact
steps:
- name: Download built artifact
uses: actions/download-artifact@v4.1.0
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}

Expand Down

0 comments on commit 13ad9bc

Please sign in to comment.