chore: update dependency dev.waterdog.waterdogpe:waterdog to v2 - autoclosed #3052
Workflow file for this run
This file contains 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: | |
pull_request: | |
schedule: | |
- cron: '00 2 * * *' | |
concurrency: | |
cancel-in-progress: true | |
group: cq-${{ github.event.pull_request.number || github.job }} | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
if: ${{ !startsWith(github.ref, 'refs/heads/renovate/') }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
check-latest: true | |
distribution: 'zulu' | |
- name: Setup gradle cache | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: true | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
tools: latest | |
languages: 'java' | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |