mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
657566be92
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.35.3 to 4.36.0. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/e46ed2cbd01164d986452f91f178727624ae40d7...7211b7c8077ea37d8641b6271f6a365a22a5fbfa) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.36.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
name: codeql
|
|
|
|
on:
|
|
push:
|
|
branches: ["dev", "release/*", "stable/*"]
|
|
pull_request:
|
|
branches: ["dev", "release/*", "stable/*"]
|
|
paths-ignore:
|
|
- "docs/**"
|
|
schedule:
|
|
- cron: "32 1 * * 2"
|
|
|
|
jobs:
|
|
analyze:
|
|
if: github.repository == 'opf/openproject'
|
|
name: Analyze
|
|
runs-on: "ubuntu-latest"
|
|
timeout-minutes: 120
|
|
permissions:
|
|
# required for all workflows
|
|
security-events: write
|
|
|
|
# only required for workflows in private repositories
|
|
actions: read
|
|
contents: read
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: ["javascript-typescript", "ruby"]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
|
|
with:
|
|
config-file: ./.github/codeql/config.yml
|
|
languages: ${{ matrix.language }}
|
|
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
|
queries: security-extended,security-and-quality
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
|
|
with:
|
|
category: "/language:${{matrix.language}}"
|