Compare commits

...

10 Commits

Author SHA1 Message Date
cb4c2df25a Merge pull request 'Update actions/checkout action to v7' (#7) from renovate/actions-checkout-7.x into main
All checks were successful
Continuous Integration / lint-and-security (push) Successful in 59s
Continuous Integration / tests-and-coverage (push) Successful in 23s
Reviewed-on: #7
2026-06-19 22:35:42 +02:00
7f2b16b581 Update actions/checkout action to v7
All checks were successful
Continuous Integration / lint-and-security (pull_request) Successful in 2m25s
Continuous Integration / tests-and-coverage (pull_request) Successful in 47s
2026-06-19 02:21:55 +00:00
4165ddbf89 Merge pull request 'Update actions/setup-python action to v6' (#6) from renovate/actions-setup-python-6.x into main
All checks were successful
Continuous Integration / lint-and-security (push) Successful in 19s
Continuous Integration / tests-and-coverage (push) Successful in 20s
Reviewed-on: #6
2026-06-07 12:05:05 +02:00
94d1e1db5e Merge branch 'main' into renovate/actions-setup-python-6.x
All checks were successful
Continuous Integration / lint-and-security (pull_request) Successful in 24s
Continuous Integration / tests-and-coverage (pull_request) Successful in 21s
2026-06-07 12:03:29 +02:00
458f3cbb8f Merge pull request 'Update actions/checkout action to v6' (#3) from renovate/actions-checkout-6.x into main
All checks were successful
Continuous Integration / lint-and-security (push) Successful in 28s
Continuous Integration / tests-and-coverage (push) Successful in 24s
Reviewed-on: #3
2026-06-07 12:03:21 +02:00
f6298c9bc3 Update actions/setup-python action to v6
All checks were successful
Continuous Integration / lint-and-security (pull_request) Successful in 1m49s
Continuous Integration / tests-and-coverage (pull_request) Successful in 19s
2026-06-07 02:22:20 +00:00
d75c9870fc Update actions/checkout action to v6
All checks were successful
Continuous Integration / lint-and-security (pull_request) Successful in 22s
Continuous Integration / tests-and-coverage (pull_request) Successful in 21s
2026-06-07 02:22:14 +00:00
9ee4070a44 Merge pull request 'Removed codeql action' (#5) from remove-codeql into main
All checks were successful
Continuous Integration / lint-and-security (push) Successful in 19s
Continuous Integration / tests-and-coverage (push) Successful in 21s
Reviewed-on: #5
2026-06-06 09:47:22 +02:00
1f62d515fd Merge branch 'main' into remove-codeql
All checks were successful
Continuous Integration / lint-and-security (pull_request) Successful in 19s
Continuous Integration / tests-and-coverage (pull_request) Successful in 20s
2026-06-06 09:45:04 +02:00
2542db2097 Removed codeql action
All checks were successful
Continuous Integration / lint-and-security (pull_request) Successful in 31s
Continuous Integration / tests-and-coverage (pull_request) Successful in 22s
2026-06-06 09:44:39 +02:00
2 changed files with 4 additions and 40 deletions

View File

@@ -10,9 +10,9 @@ jobs:
lint-and-security: lint-and-security:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with: with:
python-version: '3.12' python-version: '3.12'
@@ -32,10 +32,10 @@ jobs:
tests-and-coverage: tests-and-coverage:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with: with:
python-version: '3.12' python-version: '3.12'

View File

@@ -1,36 +0,0 @@
name: "CodeQL Analysis"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '30 1 * * 0' # Weekly scan
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'python' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3