Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb47ec45

Browse files
authored
Merge branch 'main' into michaelrfairhurst/implement-package-preprocessor
2 parentsa31e047 +42985d7 commitb47ec45

File tree

496 files changed

+7210
-1423
lines changed

Some content is hidden

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

496 files changed

+7210
-1423
lines changed

‎.github/workflows/dispatch-matrix-test-on-comment.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
-name:Generate token
2121
id:generate-token
22-
uses:actions/create-github-app-token@v1
22+
uses:actions/create-github-app-token@v2
2323
with:
2424
app-id:${{ vars.AUTOMATION_APP_ID }}
2525
private-key:${{ secrets.AUTOMATION_PRIVATE_KEY }}

‎.github/workflows/dispatch-release-performance-check.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
-name:Generate token
2121
id:generate-token
22-
uses:actions/create-github-app-token@v1
22+
uses:actions/create-github-app-token@v2
2323
with:
2424
app-id:${{ vars.AUTOMATION_APP_ID }}
2525
private-key:${{ secrets.AUTOMATION_PRIVATE_KEY }}

‎.github/workflows/finalize-release.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
-name:Generate token
104104
if:env.HOTFIX_RELEASE == 'false'
105105
id:generate-token
106-
uses:actions/create-github-app-token@v1
106+
uses:actions/create-github-app-token@v2
107107
with:
108108
app-id:${{ vars.AUTOMATION_APP_ID }}
109109
private-key:${{ secrets.AUTOMATION_PRIVATE_KEY }}

‎.github/workflows/prepare-release.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
144144
-name:Generate token
145145
id:generate-token
146-
uses:actions/create-github-app-token@v1
146+
uses:actions/create-github-app-token@v2
147147
with:
148148
app-id:${{ vars.AUTOMATION_APP_ID }}
149149
private-key:${{ secrets.AUTOMATION_PRIVATE_KEY }}

‎.github/workflows/update-release.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
-name:Generate token
4545
id:generate-token
46-
uses:actions/create-github-app-token@v1
46+
uses:actions/create-github-app-token@v2
4747
with:
4848
app-id:${{ vars.AUTOMATION_APP_ID }}
4949
private-key:${{ secrets.AUTOMATION_PRIVATE_KEY }}

‎.github/workflows/validate-release.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
steps:
4141
-name:Generate token
4242
id:generate-token
43-
uses:actions/create-github-app-token@v1
43+
uses:actions/create-github-app-token@v2
4444
with:
4545
app-id:${{ vars.AUTOMATION_APP_ID }}
4646
private-key:${{ secrets.AUTOMATION_PRIVATE_KEY }}
@@ -108,7 +108,7 @@ jobs:
108108
steps:
109109
-name:Generate token
110110
id:generate-token
111-
uses:actions/create-github-app-token@v1
111+
uses:actions/create-github-app-token@v2
112112
with:
113113
app-id:${{ vars.AUTOMATION_APP_ID }}
114114
private-key:${{ secrets.AUTOMATION_PRIVATE_KEY }}

‎README.md‎

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@ The following coding standards are supported:
1515
-[MISRA C 2012, 3rd Edition, 1st revision](https://www.misra.org.uk/product/misra-c2012-third-edition-first-revision/) (incoporating Amendment 1 & Technical Corrigendum 1). In addition, we support the following additional amendments and technical corrigendums:
1616
-[MISRA C 2012 Amendment 2](https://misra.org.uk/app/uploads/2021/06/MISRA-C-2012-AMD2.pdf)
1717
-[MISRA C 2012 Technical Corrigendum 2](https://misra.org.uk/app/uploads/2022/04/MISRA-C-2012-TC2.pdf)
18+
-[MISRA C 2012 Amendment 3](https://misra.org.uk/app/uploads/2021/06/MISRA-C-2012-AMD3.pdf)
19+
-[MISRA C 2012 Amendment 4](https://misra.org.uk/app/uploads/2021/06/MISRA-C-2012-AMD4.pdf)
20+
-[MISRA C 2023](https://misra.org.uk/product/misra-c2023/)
1821

1922
##:construction: Standards under development:construction:
2023

21-
The following standards are under active development:
24+
The following standards are under active development for[C++17](https://www.iso.org/standard/68564.html):
2225

23-
-[MISRA C++ 2023](https://misra.org.uk/product/misra-cpp2023/) - under development -_scheduled for release 2025 Q1_
24-
-[MISRA C 2023](https://misra.org.uk/product/misra-c2023/) - under development -_scheduled for release 2025 Q1_
25-
- This includes the development of[MISRA C 2012 Amendment 3](https://misra.org.uk/app/uploads/2021/06/MISRA-C-2012-AMD3.pdf) and[MISRA C 2012 Amendment 4](https://misra.org.uk/app/uploads/2021/06/MISRA-C-2012-AMD4.pdf), which are incorporated into MISRA C 2023.
26+
-[MISRA C++ 2023](https://misra.org.uk/product/misra-cpp2023/) - under development -_scheduled for release 2025 Q2/Q3_
2627

2728
##How do I use the CodeQL Coding Standards Queries?
2829

‎amendments.csv‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ c,MISRA-C-2012,Amendment4,RULE-8-9,Yes,Clarification,Yes,Import
2424
c,MISRA-C-2012,Amendment4,RULE-9-4,Yes,Clarification,Yes,Import
2525
c,MISRA-C-2012,Amendment4,RULE-10-1,Yes,Clarification,Yes,Import
2626
c,MISRA-C-2012,Amendment4,RULE-18-3,Yes,Clarification,Yes,Import
27-
c,MISRA-C-2012,Amendment4,RULE-1-4,Yes,Replace,No,Easy
27+
c,MISRA-C-2012,Amendment4,RULE-1-4,Yes,Replace,Yes,Easy
2828
c,MISRA-C-2012,Amendment4,RULE-9-1,Yes,Refine,Yes,Easy
2929
c,MISRA-C-2012,Corrigendum2,DIR-4-10,Yes,Clarification,Yes,Import
3030
c,MISRA-C-2012,Corrigendum2,RULE-7-4,Yes,Refine,Yes,Easy
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
- description: CERT C 2016 (Default)
2+
- qlpack: codeql/cert-c-coding-standards
3+
- include:
4+
kind:
5+
- problem
6+
- path-problem
7+
- external/cert/obligation/rule
8+
- exclude:
9+
tags contain:
10+
- external/cert/default-disabled
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
- description: CERT C 2016 Level 1 Rules (Priority 12 - Priority 27)
2+
- qlpack: codeql/cert-c-coding-standards
3+
- include:
4+
kind:
5+
- problem
6+
- path-problem
7+
- external/cert/obligation/rule
8+
tags contain:
9+
- external/cert/level/l1
10+
- exclude:
11+
tags contain:
12+
- external/cert/default-disabled

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp