From a79891d9b32782cca7fc3c2007b0a15974504d12 Mon Sep 17 00:00:00 2001 From: Morgy93 <7961978+Morgy93@users.noreply.github.com> Date: Mon, 21 Sep 2026 11:13:19 +0000 Subject: [PATCH 1/2] chore: upgrade trunk linters --- .trunk/trunk.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index 3e6d2854..5bf113ed 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -40,16 +40,16 @@ lint: - pinact@5.0.0 - svgo@4.1.0 - taplo@0.10.0 - - checkov@3.3.17 + - checkov@3.3.19 - actionlint@1.7.12 - git-diff-check - hadolint@2.15.1 - markdownlint@0.49.1 - oxipng@10.2.1 - - prettier@3.9.6 + - prettier@3.9.8 - shellcheck@0.11.0 - shfmt@3.14.1 - - trufflehog@3.97.4 + - trufflehog@3.97.5 - yamllint@1.38.0 actions: disabled: From aad2f897517c52fc2e2254482ef11139a06a8a75 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 21 Sep 2026 13:18:05 +0000 Subject: [PATCH 2/2] style: format CheckCommand for mago Co-authored-by: Morgy93 <7961978+Morgy93@users.noreply.github.com> --- src/Console/Command/System/CheckCommand.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Console/Command/System/CheckCommand.php b/src/Console/Command/System/CheckCommand.php index a80e7ea1..a027ad13 100644 --- a/src/Console/Command/System/CheckCommand.php +++ b/src/Console/Command/System/CheckCommand.php @@ -527,9 +527,10 @@ private function getSearchEngineHosts(): array $hostValue = $this->getEnvironmentVariable($envVar); if (!empty($hostValue)) { $port = - $this->getEnvironmentVariable('ELASTICSEARCH_PORT') ?? $this->getEnvironmentVariable( - 'ES_PORT', - ) ?? $this->getEnvironmentVariable('OPENSEARCH_PORT') ?? '9200'; + $this->getEnvironmentVariable('ELASTICSEARCH_PORT') + ?? $this->getEnvironmentVariable('ES_PORT') + ?? $this->getEnvironmentVariable('OPENSEARCH_PORT') + ?? '9200'; $elasticHosts[] = "http://{$hostValue}:{$port}"; } }