Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2e35fdf

Browse files
committedFeb 5, 2025·
Merge with main
2 parents 382ba82 + 214fad2 commit 2e35fdf

File tree

231 files changed

+4292
-71882
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

231 files changed

+4292
-71882
lines changed
 

‎.github/workflows/codeql.yml

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: "CodeQL Advanced"
13+
14+
on:
15+
push:
16+
branches: [ "main" ]
17+
pull_request:
18+
branches: [ "main" ]
19+
schedule:
20+
- cron: '30 6 * * 1'
21+
22+
jobs:
23+
analyze:
24+
runs-on: 'blacksmith'
25+
permissions:
26+
# required for all workflows
27+
security-events: write
28+
29+
# required to fetch internal or private CodeQL packs
30+
packages: read
31+
32+
# only required for workflows in private repositories
33+
actions: read
34+
contents: read
35+
36+
strategy:
37+
fail-fast: false
38+
matrix:
39+
include:
40+
- language: javascript-typescript
41+
build-mode: none
42+
- language: python
43+
build-mode: none
44+
steps:
45+
- name: Checkout repository
46+
uses: actions/checkout@v4
47+
48+
# Initializes the CodeQL tools for scanning.
49+
- name: Initialize CodeQL
50+
uses: github/codeql-action/init@v3
51+
with:
52+
languages: ${{ matrix.language }}
53+
build-mode: ${{ matrix.build-mode }}
54+
# If you wish to specify custom queries, you can do so here or in a config file.
55+
# By default, queries listed here will override any specified in a config file.
56+
# Prefix the list here with "+" to use these queries and those in the config file.
57+
58+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
59+
# queries: security-extended,security-and-quality
60+
61+
# If the analyze step fails for one of the languages you are analyzing with
62+
# "We were unable to automatically build your code", modify the matrix above
63+
# to set the build mode to "manual" for that language. Then modify this step
64+
# to build your code.
65+
# ℹ️ Command-line programs to run using the OS shell.
66+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
67+
- if: matrix.build-mode == 'manual'
68+
shell: bash
69+
run: |
70+
echo 'If you are using a "manual" build mode for one or more of the' \
71+
'languages you are analyzing, replace this with the commands to build' \
72+
'your code, for example:'
73+
echo ' make bootstrap'
74+
echo ' make release'
75+
exit 1
76+
77+
- name: Perform CodeQL Analysis
78+
uses: github/codeql-action/analyze@v3
79+
with:
80+
category: "/language:${{matrix.language}}"

‎.github/workflows/dependency-review.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ permissions:
1818

1919
jobs:
2020
dependency-review:
21-
runs-on: ubuntu-latest
21+
runs-on: blacksmith
2222
steps:
2323
- name: 'Checkout repository'
2424
uses: actions/checkout@v4

0 commit comments

Comments
 (0)
Please sign in to comment.