Skip to content

BE: Fix blocking gh release info call #211

BE: Fix blocking gh release info call

BE: Fix blocking gh release info call #211

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
paths:
- 'frontend/**'
- "pom.xml"
- "contract/**"
- 'api/**'
- 'serde-api/**'
schedule:
- cron: '39 15 * * 6'
permissions:
contents: read
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ 'javascript', 'java' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ github.token }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
cache: 'maven'
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3