Skip to content

Commit 03964ac

Browse files
authored
Merge pull request #9 from m4r1k/feature/pre-v51-housekeeping
Add roadmap, stable/testing package channels, and GitHub security
2 parents 643c465 + a7d0f30 commit 03964ac

7 files changed

Lines changed: 434 additions & 58 deletions

File tree

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
updates:
3+
# Keep GitHub Actions up to date
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
commit-message:
9+
prefix: "chore"

.github/workflows/codeql.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
schedule:
9+
# Run weekly on Monday at 06:00 UTC
10+
- cron: '0 6 * * 1'
11+
12+
jobs:
13+
analyze:
14+
name: Analyze (Python)
15+
runs-on: ubuntu-latest
16+
permissions:
17+
security-events: write
18+
19+
steps:
20+
- name: Checkout repository
21+
uses: actions/checkout@v4
22+
23+
- name: Initialize CodeQL
24+
uses: github/codeql-action/init@v3
25+
with:
26+
languages: python
27+
28+
- name: Perform CodeQL Analysis
29+
uses: github/codeql-action/analyze@v3
30+
with:
31+
category: "/language:python"

0 commit comments

Comments
 (0)