Skip to content

Update GitHub workflows runner images #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
composer code-analysis

markdown-coding-standards:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
name: Markdown coding standards
steps:
- name: Checkout
Expand All @@ -155,7 +155,7 @@ jobs:
- name: Yarn install
uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '22'
- run: yarn install
- name: coding-standards-check
run: yarn coding-standards-check
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Updated

- Update GitHub workflows runner images

## [1.1.3]

### Updated
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"drupal/coder": "^8.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"mglaman/drupal-check": "^1.4",
"mglaman/phpstan-drupal": "~1.2.0",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/WebformController.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct(
readonly private RequestStack $requestStack,
readonly private ImportHelper $importHelper,
readonly private WebformHelper $webformHelper,
readonly private RendererInterface $renderer
readonly private RendererInterface $renderer,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Helper/ImportHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function __construct(
Connection $database,
TimeInterface $time,
Settings $settings,
CacheBackendInterface $cache
CacheBackendInterface $cache,
) {
$this->webformEntityStorage = $entityTypeManager->getStorage('webform');
$this->client = $client;
Expand Down
4 changes: 2 additions & 2 deletions src/Helper/WebformHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ final class WebformHelper {
/**
* The request stack.
*
* @var Symfony\Component\HttpFoundation\RequestStack
* @var \Symfony\Component\HttpFoundation\RequestStack
*/
private RequestStack $requestStack;

Expand All @@ -47,7 +47,7 @@ final class WebformHelper {
public function __construct(
EntityTypeManagerInterface $entityTypeManager,
ImportHelper $importHelper,
RequestStack $requestStack
RequestStack $requestStack,
) {
$this->webformEntityStorage = $entityTypeManager->getStorage('webform');
$this->importHelper = $importHelper;
Expand Down
Loading