Skip to content

Updated dockerfile to python 3.13, removed cache from pip3 to reduce size of the docker image #51

Updated dockerfile to python 3.13, removed cache from pip3 to reduce size of the docker image

Updated dockerfile to python 3.13, removed cache from pip3 to reduce size of the docker image #51

Workflow file for this run

name: "CodeQL Advanced"
on:
push:
branches: [ "dev", "main" ]
pull_request:
branches: [ "dev", "main" ]
schedule:
- cron: "0 13 * * 5"
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
permissions:
security-events: write
strategy:
fail-fast: false
matrix:
include:
- language: python
build-mode: none
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"