8000 Update publish version to 1.3.8 and vault version to 1.15.1 · piiano/vault-java@c9a1bd5 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

CodeQL (main)

CodeQL (main) #543

Workflow file for this run

name: CodeQL
run-name: ${{ github.workflow }} (${{ github.head_ref || github.ref_name }})
on:
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
schedule:
- cron: "27 18 * * 2"
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["java"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Install java
uses: actions/setup-java@v4
with:
java-version: 8
distribution: zulu
cache: maven
- name: Prepare.
working-directory: sdk
run: make
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
0