From 92ce780d6f6b940fd2f7b55495c1c4c381d7d717 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 17 Apr 2025 14:42:24 +0000 Subject: [PATCH 1/2] build(deps): bump kotlin.version from 1.9.22 to 2.1.20 Bumps `kotlin.version` from 1.9.22 to 2.1.20. Updates `org.jetbrains.kotlin:kotlin-stdlib-jdk8` from 1.9.22 to 2.1.20 - [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/v1.9.22...v2.1.20) Updates `org.jetbrains.kotlin:kotlin-maven-plugin` from 1.9.22 to 2.1.20 --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-stdlib-jdk8 dependency-version: 2.1.20 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: org.jetbrains.kotlin:kotlin-maven-plugin dependency-version: 2.1.20 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- features/kotlin/pom.xml | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/features/kotlin/pom.xml b/features/kotlin/pom.xml index 7624207..2c3d379 100644 --- a/features/kotlin/pom.xml +++ b/features/kotlin/pom.xml @@ -14,7 +14,7 @@ ${project.jdk.version} UTF-8 UTF-8 - 1.9.22 + 2.1.20 configured-feature-kotlin diff --git a/pom.xml b/pom.xml index 66c0723..5f8d003 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ ${project.jdk.version} UTF-8 UTF-8 - 2.0.21 + 2.1.20 cc.carm.lib From 1ffd4b2f0b28a322bf91bdecc4c06a3c6ace7229 Mon Sep 17 00:00:00 2001 From: Carm Date: Fri, 18 Apr 2025 00:31:42 +0800 Subject: [PATCH 2/2] build(checks): Bye codacy. --- .github/workflows/codacy-analysis.yml | 54 --------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .github/workflows/codacy-analysis.yml diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml deleted file mode 100644 index e8cfcbd..0000000 --- a/.github/workflows/codacy-analysis.yml +++ /dev/null @@ -1,54 +0,0 @@ -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -# This workflow checks out code, performs a Codacy security scan -# and integrates the results with the -# GitHub Advanced Security code scanning feature. For more information on -# the Codacy security scan action usage and parameters, see -# https://github.com/codacy/codacy-analysis-cli-action. -# For more information on Codacy Analysis CLI in general, see -# https://github.com/codacy/codacy-analysis-cli. - -name: "Codacy Security Scan" - -on: - push: - branches: [ master ] - pull_request: - # The branches below must be a subset of the branches above - branches: [ master ] - schedule: - - cron: '27 16 * * 5' - -jobs: - codacy-security-scan: - name: Codacy Security Scan - runs-on: ubuntu-latest - steps: - # Checkout the repository to the GitHub Actions runner - - name: Checkout code - uses: actions/checkout@v4 - - # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - - name: Run Codacy Analysis CLI - uses: codacy/codacy-analysis-cli-action@09916000460adeeedc96b9704f86deba53e2ad5d - with: - # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository - # You can also omit the token and run the tools that support default configurations - project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} - verbose: true - output: results.sarif - format: sarif - # Adjust severity of non-security issues - gh-code-scanning-compat: true - # Force 0 exit code to allow SARIF file generation - # This will handover control about PR rejection to the GitHub side - max-allowed-issues: 2147483647 - - # Upload the SARIF file generated in the previous step - - name: Upload SARIF results file - uses: github/codeql-action/upload-sarif@v3 - with: - sarif_file: results.sarif