Skip to content

Commit 369c99b

Browse files
Merge branch 'main' into jeongsoolee09/MISRA-C++-2023-Memory
2 parents e3c80f5 + ad580d3 commit 369c99b

File tree

197 files changed

+5024
-165
lines changed

Some content is hidden

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

197 files changed

+5024
-165
lines changed

.github/workflows/code-scanning-pack-gen.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
matrix: ${{ steps.export-code-scanning-pack-matrix.outputs.matrix }}
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
- name: Export Code Scanning pack matrix
3333
id: export-code-scanning-pack-matrix
3434
run: |
@@ -44,7 +44,7 @@ jobs:
4444
fail-fast: false
4545
matrix: ${{ fromJSON(needs.prepare-code-scanning-pack-matrix.outputs.matrix) }}
4646
steps:
47-
- uses: actions/checkout@v5
47+
- uses: actions/checkout@v6
4848

4949
- name: Cache CodeQL
5050
id: cache-codeql
@@ -84,7 +84,7 @@ jobs:
8484
id: checkout-external-help-files
8585
# PRs from forks and dependabot do not have access to an appropriate token for cloning the help files repos
8686
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
87-
uses: actions/checkout@v5
87+
uses: actions/checkout@v6
8888
with:
8989
ssh-key: ${{ secrets.CODEQL_CODING_STANDARDS_HELP_KEY }}
9090
repository: "github/codeql-coding-standards-help"
@@ -111,7 +111,7 @@ jobs:
111111
zip -r codeql-coding-standards/code-scanning-cpp-query-pack.zip codeql-coding-standards/c/ codeql-coding-standards/cpp/ codeql-coding-standards/.codeqlmanifest.json codeql-coding-standards/supported_codeql_configs.json codeql-coding-standards/scripts/configuration codeql-coding-standards/scripts/reports codeql-coding-standards/scripts/shared codeql-coding-standards/scripts/guideline_recategorization codeql-coding-standards/schemas
112112
113113
- name: Upload GHAS Query Pack
114-
uses: actions/upload-artifact@v6
114+
uses: actions/upload-artifact@v7
115115
with:
116116
name: code-scanning-cpp-query-pack.zip
117117
path: code-scanning-cpp-query-pack.zip
@@ -132,7 +132,7 @@ jobs:
132132
codeql pack bundle --output=report-coding-standards.tgz cpp/report/src
133133
134134
- name: Upload qlpack bundles
135-
uses: actions/upload-artifact@v6
135+
uses: actions/upload-artifact@v7
136136
with:
137137
name: coding-standards-codeql-packs
138138
path: '*-coding-standards.tgz'

.github/workflows/codeql_unit_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix: ${{ steps.export-unit-test-matrix.outputs.matrix }}
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Export unit test matrix
3131
id: export-unit-test-matrix
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151

5252
- name: Install Python
5353
uses: actions/setup-python@v6
@@ -153,7 +153,7 @@ jobs:
153153
file.close()
154154
155155
- name: Upload test results
156-
uses: actions/upload-artifact@v6
156+
uses: actions/upload-artifact@v7
157157
with:
158158
name: ${{ matrix.language }}-test-results-${{ runner.os }}-${{ matrix.codeql_cli }}-${{ matrix.codeql_standard_library_ident }}
159159
path: |
@@ -173,7 +173,7 @@ jobs:
173173
script: |
174174
core.setFailed('Test run job failed')
175175
- name: Collect test results
176-
uses: actions/download-artifact@v7
176+
uses: actions/download-artifact@v8
177177

178178
- name: Validate test results
179179
run: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Check permission
1919
id: check-write-permission
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Generate token
2525
id: generate-token
26-
uses: actions/create-github-app-token@v2
26+
uses: actions/create-github-app-token@v3
2727
with:
2828
app-id: ${{ vars.AUTOMATION_APP_ID }}
2929
private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Check permission
1919
id: check-write-permission
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Generate token
2525
id: generate-token
26-
uses: actions/create-github-app-token@v2
26+
uses: actions/create-github-app-token@v3
2727
with:
2828
app-id: ${{ vars.AUTOMATION_APP_ID }}
2929
private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}

.github/workflows/extra-rule-validation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-22.04
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Check Rules
2929
shell: pwsh
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-22.04
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939

4040
- name: Ensure CPP Shared Rules Have Valid Structure
4141
shell: pwsh
@@ -46,13 +46,13 @@ jobs:
4646
run: scripts/util/Test-SharedImplementationsHaveTestCases.ps1 -Language c -CIMode
4747

4848

49-
- uses: actions/upload-artifact@v6
49+
- uses: actions/upload-artifact@v7
5050
if: failure()
5151
with:
5252
name: missing-test-report.csv
5353
path: MissingTestReport*.csv
5454

55-
- uses: actions/upload-artifact@v6
55+
- uses: actions/upload-artifact@v7
5656
if: failure()
5757
with:
5858
name: test-report.csv

.github/workflows/finalize-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ jobs:
4444
fi
4545
4646
- name: Checkout
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
ref: ${{ env.REF }}
5050
fetch-depth: 0
5151
path: release
5252

5353
- name: Checkout
54-
uses: actions/checkout@v5
54+
uses: actions/checkout@v6
5555
with:
5656
ref: ${{ env.TOOL_REF }}
5757
path: tooling
@@ -108,7 +108,7 @@ jobs:
108108
- name: Generate token
109109
if: env.HOTFIX_RELEASE == 'false'
110110
id: generate-token
111-
uses: actions/create-github-app-token@v2
111+
uses: actions/create-github-app-token@v3
112112
with:
113113
app-id: ${{ vars.AUTOMATION_APP_ID }}
114114
private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}

.github/workflows/generate-html-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-22.04
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Install Python
2828
uses: actions/setup-python@v6
@@ -37,7 +37,7 @@ jobs:
3737
python scripts/documentation/generate_iso26262_docs.py coding-standards-html-docs
3838
3939
- name: Upload HTML documentation
40-
uses: actions/upload-artifact@v6
40+
uses: actions/upload-artifact@v7
4141
with:
4242
name: coding-standards-docs-${{ github.sha }}
4343
path: coding-standards-html-docs/

.github/workflows/prepare-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-22.04
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
with:
3939
ref: ${{ inputs.ref }}
4040

@@ -143,7 +143,7 @@ jobs:
143143
144144
- name: Generate token
145145
id: generate-token
146-
uses: actions/create-github-app-token@v2
146+
uses: actions/create-github-app-token@v3
147147
with:
148148
app-id: ${{ vars.AUTOMATION_APP_ID }}
149149
private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}

.github/workflows/standard_library_upgrade_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
matrix: ${{ steps.export-unit-test-matrix.outputs.matrix }}
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
- name: Export unit test matrix
2727
id: export-unit-test-matrix
2828
run: |
2929
echo "::set-output name=matrix::$(
3030
jq --compact-output \
31-
'.supported_environment | map([.+{os: "ubuntu-20.04-xl", codeql_standard_library_ident : .codeql_standard_library | sub("\/"; "_")}]) | flatten | {include: .}' \
31+
'.supported_environment | map([.+{os: "ubuntu-22.04-xl", codeql_standard_library_ident : .codeql_standard_library | sub("\/"; "_")}]) | flatten | {include: .}' \
3232
supported_codeql_configs.json
3333
)"
3434
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747

4848
- name: Setup Python 3
4949
uses: actions/setup-python@v6
@@ -145,7 +145,7 @@ jobs:
145145
}, test_summary_file)
146146
147147
- name: Upload test results
148-
uses: actions/upload-artifact@v6
148+
uses: actions/upload-artifact@v7
149149
with:
150150
name: test-results-${{runner.os}}-${{matrix.codeql_cli}}-${{matrix.codeql_standard_library_ident}}
151151
path: |
@@ -164,7 +164,7 @@ jobs:
164164
python-version: "3.9"
165165

166166
- name: Collect test results
167-
uses: actions/download-artifact@v7
167+
uses: actions/download-artifact@v8
168168

169169
- name: Validate test results
170170
shell: python

.github/workflows/tooling-unit-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix: ${{ steps.export-supported-codeql-env-matrix.outputs.matrix }}
2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
- name: Export supported CodeQL environment matrix
3030
id: export-supported-codeql-env-matrix
@@ -42,7 +42,7 @@ jobs:
4242
matrix: ${{ fromJSON(needs.prepare-supported-codeql-env-matrix.outputs.matrix) }}
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646

4747
- name: Install Python
4848
uses: actions/setup-python@v6
@@ -85,7 +85,7 @@ jobs:
8585
runs-on: ubuntu-22.04
8686
steps:
8787
- name: Checkout
88-
uses: actions/checkout@v5
88+
uses: actions/checkout@v6
8989

9090
- name: Install Python
9191
uses: actions/setup-python@v6
@@ -104,7 +104,7 @@ jobs:
104104
runs-on: ubuntu-22.04
105105
steps:
106106
- name: Checkout
107-
uses: actions/checkout@v5
107+
uses: actions/checkout@v6
108108

109109
- name: Install Python
110110
uses: actions/setup-python@v6

0 commit comments

Comments
 (0)