From 9d64309d1c943aee98b4623ecc4301fcb35cbcee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 19:20:42 +0000 Subject: [PATCH 1/4] chore: Bump v.kotlin from 2.2.21 to 2.3.10 Bumps `v.kotlin` from 2.2.21 to 2.3.10. Updates `org.jetbrains.kotlin:kotlin-maven-plugin` from 2.2.21 to 2.3.10 Updates `org.jetbrains.kotlin:kotlin-stdlib` from 2.2.21 to 2.3.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.2.21...v2.3.10) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-maven-plugin dependency-version: 2.3.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-stdlib dependency-version: 2.3.10 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4897c0efb..194256d97 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ 21 ${project.version} - 2.2.21 + 2.3.10 2.1.0 3.1.11 From 2456e3abe99405b85f6ac54abdae6cd841b81284 Mon Sep 17 00:00:00 2001 From: Andrew Berezovskyi Date: Thu, 5 Feb 2026 23:04:01 +0100 Subject: [PATCH 2/4] build: expand codeql runs --- .github/workflows/codeql-analysis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f1fefc220..b7b46fd79 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -5,6 +5,8 @@ on: branches: [master, main] paths: - '**.java' + - '**/pom.xml' + - '.github/workflows/codeql-analysis.yml' push: branches: [master, main] From d61a10ee16d7edddefa173e98735c96809baddd1 Mon Sep 17 00:00:00 2001 From: Andrew Berezovskyi Date: Thu, 5 Feb 2026 23:06:52 +0100 Subject: [PATCH 3/4] build: expand codeql runs --- .github/workflows/codeql-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index b7b46fd79..5b24284e7 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -18,7 +18,7 @@ jobs: analyze: name: Analyze runs-on: ubuntu-latest - if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:nolint') && !contains(github.event.pull_request.labels.*.name, 'dependencies') }} + if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:nolint') && ( !contains(github.event.pull_request.labels.*.name, 'dependencies') || contains(github.event.pull_request.labels.*.name, 'ci:full')) }} concurrency: group: ${{ github.ref }} cancel-in-progress: true From 27239d200a7ac9c9f76657bc3455ac28ffa000e5 Mon Sep 17 00:00:00 2001 From: Andrew Berezovskyi Date: Thu, 5 Feb 2026 23:11:26 +0100 Subject: [PATCH 4/4] build: expand codeql runs --- .github/workflows/codeql-analysis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5b24284e7..97f150143 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -6,6 +6,7 @@ on: paths: - '**.java' - '**/pom.xml' + - 'pom.xml' - '.github/workflows/codeql-analysis.yml' push: branches: [master, main] @@ -18,7 +19,7 @@ jobs: analyze: name: Analyze runs-on: ubuntu-latest - if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:nolint') && ( !contains(github.event.pull_request.labels.*.name, 'dependencies') || contains(github.event.pull_request.labels.*.name, 'ci:full')) }} + if: ${{ contains(github.event.pull_request.labels.*.name, 'ci:full') || (!contains(github.event.pull_request.labels.*.name, 'ci:nolint') && !contains(github.event.pull_request.labels.*.name, 'dependencies')) }} concurrency: group: ${{ github.ref }} cancel-in-progress: true