Skip to content

Commit 18db0de

Browse files
committed
[CI] Bumped gh actions
1 parent e0ecc27 commit 18db0de

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

.github/workflows/browser-tests.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ jobs:
1717
test-suite: '--profile=browser --suite=admin-ui --tags=@richtext'
1818
secrets:
1919
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
20+
AUTOMATION_CLIENT_ID: ${{ secrets.AUTOMATION_CLIENT_ID }}
21+
AUTOMATION_CLIENT_INSTALLATION: ${{ secrets.AUTOMATION_CLIENT_INSTALLATION }}
22+
AUTOMATION_CLIENT_SECRET: ${{ secrets.AUTOMATION_CLIENT_SECRET }}

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
php:
1717
- '8.0'
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v5
2020

2121
- name: Setup PHP Action
2222
uses: shivammathur/setup-php@v2
@@ -45,7 +45,7 @@ jobs:
4545
- '8.1'
4646

4747
steps:
48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v5
4949

5050
- name: Setup PHP Action
5151
uses: shivammathur/setup-php@v2
@@ -95,7 +95,7 @@ jobs:
9595
- '8.1'
9696

9797
steps:
98-
- uses: actions/checkout@v3
98+
- uses: actions/checkout@v5
9999

100100
- name: Setup PHP Action
101101
uses: shivammathur/setup-php@v2
@@ -146,7 +146,7 @@ jobs:
146146
- '8.1'
147147

148148
steps:
149-
- uses: actions/checkout@v3
149+
- uses: actions/checkout@v5
150150

151151
- name: Setup PHP Action
152152
uses: shivammathur/setup-php@v2
@@ -183,7 +183,7 @@ jobs:
183183
--health-timeout 5s
184184
--health-retries 10
185185
steps:
186-
- uses: actions/checkout@v3
186+
- uses: actions/checkout@v5
187187
with:
188188
fetch-depth: 0
189189

.github/workflows/frontend-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 5
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v5
1818
- uses: actions/setup-node@v2
1919
with:
2020
node-version: '18'

phpstan-baseline.neon

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,12 @@ parameters:
408408
count: 1
409409
path: src/lib/Configuration/UI/Mapper/CustomStyle.php
410410

411+
-
412+
message: '#^Method Ibexa\\FieldTypeRichText\\Configuration\\UI\\Mapper\\CustomTag\:\:translateLabels\(\) should return array\<string, array\{label\: string, description\: string, isInline\: bool, icon\?\: string, attributes\?\: array\<string, array\{type\: string, required\: bool, defaultValue\: mixed, label\: string, choices\?\: array\<string\>, choicesLabel\?\: array\<string, string\>\}\>\}\> but returns array\<string, array\{label\: string, description\: string, isInline\: bool, icon\?\: string, attributes\?\: array\<string, array\{label\: string\}\|array\{type\: string, required\: bool, defaultValue\: mixed, label\: string, choices\?\: array\<string\>, choicesLabel\?\: array\<string, string\>\}\>\}\>\.$#'
413+
identifier: return.type
414+
count: 1
415+
path: src/lib/Configuration/UI/Mapper/CustomTag.php
416+
411417
-
412418
message: '#^Method Ibexa\\FieldTypeRichText\\Configuration\\UI\\Mapper\\CustomTemplateConfigMapper\:\:mapConfig\(\) has parameter \$enabledCustomTemplates with no value type specified in iterable type array\.$#'
413419
identifier: missingType.iterableValue

src/lib/Configuration/UI/Mapper/CustomTag.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
use Symfony\Component\Asset\Packages;
1414
use Symfony\Component\Translation\TranslatorBagInterface;
1515
use Symfony\Contracts\Translation\TranslatorInterface;
16+
use JMS\TranslationBundle\Annotation\Ignore;
1617

1718
/**
1819
* RichText Custom Tag configuration mapper.

0 commit comments

Comments
 (0)