Skip to content

Commit 483b2cb

Browse files
authored
Merge pull request #12 from itk-dev/feature/update-actions-runner-image
Update GitHub workflows runner images
2 parents 6194b51 + 31688a3 commit 483b2cb

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
composer code-analysis
137137
138138
markdown-coding-standards:
139-
runs-on: ubuntu-20.04
139+
runs-on: ubuntu-latest
140140
name: Markdown coding standards
141141
steps:
142142
- name: Checkout
@@ -155,7 +155,7 @@ jobs:
155155
- name: Yarn install
156156
uses: actions/setup-node@v2
157157
with:
158-
node-version: '16'
158+
node-version: '22'
159159
- run: yarn install
160160
- name: coding-standards-check
161161
run: yarn coding-standards-check

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Versioning](https://semver.org/spec/v2.0.0.html).
99

1010
## [Unreleased]
1111

12+
### Updated
13+
14+
- Update GitHub workflows runner images
15+
1216
## [1.1.3]
1317

1418
### Updated

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"drupal/coder": "^8.3",
2727
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
2828
"mglaman/drupal-check": "^1.4",
29+
"mglaman/phpstan-drupal": "~1.2.0",
2930
"phpunit/phpunit": "^9.5"
3031
},
3132
"autoload-dev": {

src/Controller/WebformController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __construct(
3232
readonly private RequestStack $requestStack,
3333
readonly private ImportHelper $importHelper,
3434
readonly private WebformHelper $webformHelper,
35-
readonly private RendererInterface $renderer
35+
readonly private RendererInterface $renderer,
3636
) {
3737
}
3838

src/Helper/ImportHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function __construct(
7575
Connection $database,
7676
TimeInterface $time,
7777
Settings $settings,
78-
CacheBackendInterface $cache
78+
CacheBackendInterface $cache,
7979
) {
8080
$this->webformEntityStorage = $entityTypeManager->getStorage('webform');
8181
$this->client = $client;

src/Helper/WebformHelper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ final class WebformHelper {
3737
/**
3838
* The request stack.
3939
*
40-
* @var Symfony\Component\HttpFoundation\RequestStack
40+
* @var \Symfony\Component\HttpFoundation\RequestStack
4141
*/
4242
private RequestStack $requestStack;
4343

@@ -47,7 +47,7 @@ final class WebformHelper {
4747
public function __construct(
4848
EntityTypeManagerInterface $entityTypeManager,
4949
ImportHelper $importHelper,
50-
RequestStack $requestStack
50+
RequestStack $requestStack,
5151
) {
5252
$this->webformEntityStorage = $entityTypeManager->getStorage('webform');
5353
$this->importHelper = $importHelper;

0 commit comments

Comments
 (0)