mirror of
https://github.com/Screenly/Anthias.git
synced 2026-06-14 03:05:01 -04:00
Consolidates 6 Dependabot PRs into one grouped update and regenerates uv.lock (which the per-PR Dependabot runs left untouched, editing only pyproject.toml). Python (dev/build tooling + type stubs + minor runtime libs): - pytest-cov 6.0.0 -> 7.1.0 (dev) - click 8.1.7 -> 8.4.1 (docker-image-builder, local) - sh 2.2.2 -> 2.3.0 (server, viewer) - django-stubs-ext 6.0.3 -> 6.0.5 (server, mypy) - types-pytz 2026.2.0.20260506 -> 2026.2.0.20260518 (dev-host) GitHub Actions (pinned-SHA bumps): - github/codeql-action init/autobuild/analyze (v4) - codecov/codecov-action (v6) Supersedes #3058, #3057, #3056, #3055, #3054, #3053. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
70 lines
2.3 KiB
YAML
70 lines
2.3 KiB
YAML
# For most projects, this workflow file will not need changing; you simply need
|
||
# to commit it to your repository.
|
||
#
|
||
# You may wish to alter this file to override the set of languages analyzed,
|
||
# or to provide custom queries or build logic.
|
||
#
|
||
# ******** NOTE ********
|
||
# We have attempted to detect the languages in your repository. Please check
|
||
# the `language` matrix defined below to confirm you have the correct set of
|
||
# supported CodeQL languages.
|
||
#
|
||
name: "CodeQL"
|
||
|
||
on:
|
||
push:
|
||
branches: [ master, production ]
|
||
pull_request:
|
||
# The branches below must be a subset of the branches above
|
||
branches: [ master, production ]
|
||
schedule:
|
||
- cron: '30 20 * * 0'
|
||
|
||
jobs:
|
||
analyze:
|
||
name: Analyze
|
||
runs-on: ubuntu-24.04
|
||
|
||
permissions:
|
||
actions: read
|
||
contents: read
|
||
security-events: write
|
||
|
||
strategy:
|
||
fail-fast: false
|
||
matrix:
|
||
language: [ 'javascript', 'python' ]
|
||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
|
||
# Learn more:
|
||
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
|
||
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
|
||
|
||
# Initializes the CodeQL tools for scanning.
|
||
- name: Initialize CodeQL
|
||
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4
|
||
with:
|
||
languages: ${{ matrix.language }}
|
||
config-file: ./.github/codeql/codeql-config.yml
|
||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||
# If this step fails, then you should remove it and run the build manually (see below)
|
||
- name: Autobuild
|
||
uses: github/codeql-action/autobuild@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4
|
||
|
||
# ℹ️ Command-line programs to run using the OS shell.
|
||
# 📚 https://git.io/JvXDl
|
||
|
||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||
# and modify them (or add more) to build your code if your project
|
||
# uses a compiled language
|
||
|
||
#- run: |
|
||
# make bootstrap
|
||
# make release
|
||
|
||
- name: Perform CodeQL Analysis
|
||
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4
|