Skip to content

Bump werkzeug from 3.0.2 to 3.0.3 in /{{cookiecutter.app_name}}/requirements #1621

Bump werkzeug from 3.0.2 to 3.0.3 in /{{cookiecutter.app_name}}/requirements

Bump werkzeug from 3.0.2 to 3.0.3 in /{{cookiecutter.app_name}}/requirements #1621

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 14 * * 5"
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language:
- python
- javascript
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Generate template project
run: invoke build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3