Upgrade Spring 6.2.12 -> 6.2.13 #6337
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
| # Analyzes the code using GitHub's default CodeQL query database. | |
| # Identified issues are registered with GitHub's code scanning dashboard. When | |
| # a pull request is analyzed, any offending lines are annotated. See | |
| # https://codeql.github.com for details. | |
| name: CodeQL analysis | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '0 4 * * 1' | |
| permissions: | |
| contents: read | |
| env: | |
| MAVEN_ARGS: --batch-mode -Dstyle.color=always -T1C | |
| jobs: | |
| analyze: | |
| strategy: | |
| matrix: | |
| language: [ java, ruby ] | |
| permissions: | |
| contents: read | |
| security-events: write | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Install Harden-Runner | |
| uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 | |
| with: | |
| disable-sudo-and-containers: true | |
| egress-policy: block | |
| allowed-endpoints: > | |
| api.adoptium.net:443 | |
| api.github.com:443 | |
| github.com:443 | |
| hosted-compute-watchdog-prod-*.githubapp.com:443 | |
| objects.githubusercontent.com:443 | |
| release-assets.githubusercontent.com:443 | |
| repo.maven.apache.org:443 | |
| uploads.github.com:443 | |
| - name: Check out code and set up JDK and Maven | |
| uses: s4u/setup-maven-action@6c4e9964d4ecb8f1026310cd8618791fd51a8016 # v1.19.0 | |
| with: | |
| java-version: 25 | |
| java-distribution: temurin | |
| maven-version: 3.9.11 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Perform minimal build | |
| if: matrix.language == 'java' | |
| run: mvn package -DskipTests -Dverification.skip | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2 | |
| with: | |
| category: /language:${{ matrix.language }} |