fix(deps): update jackson dependencies to v2.22 {patch} - autoclosed #4283
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "CodeQL" | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [main] | |
| paths-ignore: | |
| - "README.md" | |
| - "**/README.md" | |
| - "CODE_OF_CONDUCT.md" | |
| - "CONTRIBUTING.md" | |
| - "pull_request_template.md" | |
| - "SECURITY.md" | |
| - "LICENSE" | |
| - ".github/**" | |
| - "!.github/workflows/codeql-analysis.yml" | |
| - "renovate.json" | |
| - ".whitesource" | |
| - "gradle/libs.versions.toml" | |
| - "config/dependency-check/**" | |
| - "lowkey-vault-docker/src/docker/Dockerfile" | |
| - ".idea/**" | |
| - ".gitignore" | |
| permissions: | |
| # only required for workflows in private repositories | |
| actions: read | |
| contents: read | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # required for all workflows | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Validate Gradle wrapper | |
| uses: gradle/actions/wrapper-validation@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2 | |
| with: | |
| languages: "java" | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 | |
| with: | |
| cache-disabled: true | |
| - name: Build with Gradle | |
| run: ./gradlew build -x test -x dockerBuild -x dockerRun -x dockerStop | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2 |