Skip to content

[AGILE-392] Cover unrestricted drag destinations #59916

[AGILE-392] Cover unrestricted drag destinations

[AGILE-392] Cover unrestricted drag destinations #59916

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Initialize CodeQL
uses: github/codeql-action/init@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9
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@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9
with:
category: "/language:${{matrix.language}}"