Bump python from 3.12-slim-bookworm to 3.13-slim-bookworm in the docker-all group across 1 directory #218
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "CodeQL analysis" | |
on: | |
push: | |
tags: ["*"] | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
schedule: | |
- cron: "25 10 * * 3" | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
analyze: | |
name: "CodeQL analysis (${{ matrix.language }})" | |
runs-on: "ubuntu-latest" | |
permissions: | |
actions: "read" | |
contents: "read" | |
security-events: "write" | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ["python"] | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" | |
- name: "Initialize CodeQL" | |
uses: "github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd" | |
with: | |
languages: "${{ matrix.language }}" | |
- name: "Autobuild" | |
uses: "github/codeql-action/autobuild@662472033e021d55d94146f66f6058822b0b39fd" | |
- name: "Perform CodeQL Analysis" | |
uses: "github/codeql-action/analyze@662472033e021d55d94146f66f6058822b0b39fd" |