Skip to content

Commit 67aadbe

Browse files
Merge branch 'main' into patch-1
2 parents 4fdc43b + 5e15e6d commit 67aadbe

109 files changed

Lines changed: 720 additions & 123 deletions

File tree

Some content is hidden

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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# ---------------------------------------------------------------
99
# To update the sha:
1010
# https://github.com/github/gh-base-image/pkgs/container/gh-base-image%2Fgh-base-noble
11-
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250730-174526-g48ad667e7 AS base
11+
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250805-204228-g50c20871f AS base
1212

1313
# Install curl for Node install and determining the early access branch
1414
# Install git for cloning docs-early-access & translations repos
74 KB
Loading
95.4 KB
Loading
189 KB
Loading

content/actions/how-tos/write-workflows/choose-what-workflows-do/pass-job-outputs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ redirect_from:
2323
job1:
2424
runs-on: ubuntu-latest
2525
outputs:
26-
output1: ${{ steps.step1.outputs.test }}
27-
output2: ${{ steps.step2.outputs.test }}
26+
output1: {% raw %}${{ steps.step1.outputs.test }}{% endraw %}
27+
output2: {% raw %}${{ steps.step2.outputs.test }}{% endraw %}
2828
steps:
2929
- id: step1
3030
run: echo "test=hello" >> "$GITHUB_OUTPUT"
@@ -52,8 +52,8 @@ redirect_from:
5252
needs: job1
5353
steps:
5454
- env:
55-
OUTPUT1: ${{needs.job1.outputs.output1}}
56-
OUTPUT2: ${{needs.job1.outputs.output2}}
55+
OUTPUT1: {% raw %}${{needs.job1.outputs.output1}}{% endraw %}
56+
OUTPUT2: {% raw %}${{needs.job1.outputs.output2}}{% endraw %}
5757
run: echo "$OUTPUT1 $OUTPUT2"
5858
```
5959

content/code-security/code-scanning/managing-your-code-scanning-configuration/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@ children:
2828
- /javascript-typescript-built-in-queries
2929
- /python-built-in-queries
3030
- /ruby-built-in-queries
31+
- /rust-built-in-queries
3132
- /swift-built-in-queries
3233
---
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Rust queries for CodeQL analysis
3+
shortTitle: Rust CodeQL queries
4+
intro: 'Explore the queries that {% data variables.product.prodname_codeql %} uses to analyze code written in Rust when you select the `default` or the `security-extended` query suite.'
5+
product: '{% data reusables.gated-features.codeql %}'
6+
allowTitleToDifferFromFilename: true
7+
versions:
8+
fpt: '*'
9+
ghes: '*'
10+
ghec: '*'
11+
type: reference
12+
topics:
13+
- Code scanning
14+
- CodeQL
15+
---
16+
17+
{% data variables.product.prodname_codeql %} includes many queries for analyzing Rust code. {% data reusables.code-scanning.codeql-query-tables.query-suite-behavior %}
18+
19+
## Built-in queries for Rust analysis
20+
21+
{% data reusables.code-scanning.codeql-query-tables.codeql-version-info %}
22+
23+
{% data reusables.code-scanning.codeql-query-tables.rust %}

content/code-security/codeql-cli/codeql-cli-manual/bqrs-decode.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ redirect_from:
1616
- /code-security/codeql-cli/manual/bqrs-decode
1717
---
1818

19+
<!-- markdownlint-disable GHD053 -->
20+
21+
<!-- markdownlint-disable GHD030 -->
1922

2023
<!-- Content after this section is automatically generated -->
2124

content/code-security/codeql-cli/codeql-cli-manual/bqrs-diff.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ redirect_from:
1616
- /code-security/codeql-cli/manual/bqrs-diff
1717
---
1818

19+
<!-- markdownlint-disable GHD053 -->
20+
21+
<!-- markdownlint-disable GHD030 -->
1922

2023
<!-- Content after this section is automatically generated -->
2124

content/code-security/codeql-cli/codeql-cli-manual/bqrs-hash.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ redirect_from:
1616
- /code-security/codeql-cli/manual/bqrs-hash
1717
---
1818

19+
<!-- markdownlint-disable GHD053 -->
20+
21+
<!-- markdownlint-disable GHD030 -->
1922

2023
<!-- Content after this section is automatically generated -->
2124

0 commit comments

Comments
 (0)