Skip to content

Update poetry (python) and yarn (npm) dependencies #1125

Update poetry (python) and yarn (npm) dependencies

Update poetry (python) and yarn (npm) dependencies #1125

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "27 10 * * 4"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ python, javascript ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql.yml
queries: +security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"
# gitguardian:
# runs-on: ubuntu-latest
# steps:
# - name: GitGuardian scan
# uses: GitGuardian/ggshield-action@v1.19.1
# env:
# GITHUB_PUSH_BEFORE_SHA: ${{ github.event.before }}
# GITHUB_PUSH_BASE_SHA: ${{ github.event.base }}
# GITHUB_PULL_BASE_SHA: ${{ github.event.pull_request.base.sha }}
# GITHUB_DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
# GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}