commit 6100610b7e261645b931545ba2d5f52c2df01686
parent 19dc1a4b3faace18839185257b4fabc3dc1ad808
Author: Minerva_juppiter <94231606+minerva-jupiter@users.noreply.github.com>
Date: Sat, 20 Dec 2025 13:02:35 +0900
Add assignee to Dependabot configuration (#39)
* Add assignee to Dependabot configuration
* Update codeql.yml
* Update CodeQL workflow for scheduling and runners
Diffstat:
2 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
@@ -9,3 +9,5 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "daily"
+ assignees:
+ - "minerva-jupiter"
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
@@ -16,16 +16,18 @@ on:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
+ schedule:
+ - cron: '27 16 * * 2'
jobs:
analyze:
- runs-on: self-hosted
name: Analyze (${{ matrix.language }})
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
+ runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
permissions:
# required for all workflows
security-events: write
@@ -41,6 +43,8 @@ jobs:
fail-fast: false
matrix:
include:
+ - language: actions
+ build-mode: none
- language: javascript-typescript
build-mode: none
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
@@ -63,7 +67,7 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
- uses: github/codeql-action/init@v3
+ uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
@@ -80,7 +84,8 @@ jobs:
# to build your code.
# âšī¸ Command-line programs to run using the OS shell.
# đ See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
- - if: matrix.build-mode == 'manual'
+ - name: Run manual build steps
+ if: matrix.build-mode == 'manual'
shell: bash
run: |
echo 'If you are using a "manual" build mode for one or more of the' \
@@ -91,6 +96,6 @@ jobs:
exit 1
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v3
+ uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"