Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cache: 'pip'

- name: Install Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '10.x'

Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

- name: Upload mypy results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: mypy-results
path: mypy-results.txt
Expand Down Expand Up @@ -300,14 +300,14 @@ jobs:

- name: Upload XML coverage report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: xml-coverage-report
path: coverage.xml

- name: Upload HTML coverage report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: html-coverage-report
path: htmlcov/
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
run: cat cloc-report.txt

- name: Upload cloc report (text)
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cloc-text
path: cloc-report.txt
Expand All @@ -402,7 +402,7 @@ jobs:
run: cat cloc-summary.md

- name: Upload cloc report (Markdown)
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cloc-markdown
path: cloc-summary.md
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: CodeQL

on:
push:
branches: [main]
pull_request:
branches: ['*']
schedule:
- cron: '0 5 * * 1' # Weekly on Monday at 05:00 UTC

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
security-events: write
actions: read

jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
timeout-minutes: 30

strategy:
fail-fast: false
matrix:
language:
- python
- actions

steps:
- uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v4

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: '/language:${{ matrix.language }}'
Loading