Skip to content

Commit e389dc1

Browse files
authored
Merge pull request #228 from advanced-security/v0_5_1
v0.5.1
2 parents b1523e5 + 543fccf commit e389dc1

File tree

9 files changed

+22
-13
lines changed

9 files changed

+22
-13
lines changed

.release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: codeql-extractor-iac
22
repository: advanced-security/codeql-extractor-iac
3-
version: 0.5.0
3+
version: 0.5.1
44

55
ecosystems:
66
- "Docs"
@@ -31,4 +31,5 @@ locations:
3131
paths:
3232
- "action.yml"
3333
patterns:
34-
- '{repository}@v{version}'
34+
- "{repository}@v{version}"
35+
- "advanced-security/iac-queries@{version}"

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
```yaml
2828
- name: Initialize and Analyze IaC
29-
uses: advanced-security/[email protected].0
29+
uses: advanced-security/[email protected].1
3030
```
3131
3232
**Note:** See full documentation on [Workflows][docs-workflows].

action.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ inputs:
1212
default: ${{ github.token }}
1313
required: false
1414

15+
rewrite-sarif-tool-name:
16+
description: >
17+
Whether to rewrite the SARIF tool name to "CodeQL IaC" or keep the original tool name.
18+
required: false
19+
default: "true"
20+
1521
outputs:
1622
sarif-results:
1723
description: >
@@ -22,10 +28,12 @@ runs:
2228
using: "composite"
2329
steps:
2430
- name: "CodeQL Extractor Action"
25-
uses: advanced-security/[email protected].0
31+
uses: advanced-security/[email protected].5
2632
id: extractor
2733
with:
2834
token: ${{ inputs.token }}
29-
extractors: "advanced-security/[email protected].0"
30-
packs: advanced-security/iac-queries
35+
extractors: "advanced-security/[email protected].1"
36+
packs: advanced-security/iac-queries@0.5.1
3137
languages: "iac"
38+
# Other settings
39+
sarif-tool-name: ${{ inputs.rewrite-sarif-tool-name }}

codeql-extractor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "iac"
22
display_name: "IAC"
3-
version: 0.5.0
3+
version: 0.5.1
44
column_kind: "utf8"
55
legacy_qltest_extraction: true
66
github_api_languages:

docs/workflows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ To use the CodeQL Extractor, Library, and Queries for Infrastructure as Code, yo
66

77
```yaml
88
- name: Initialize and Analyze IaC
9-
uses: advanced-security/codeql-extractor-iac@v0.4.1
9+
uses: advanced-security/codeql-extractor-iac@v0.5.1
1010
```
1111
1212
### Uploading SARIF files to GitHub
@@ -50,7 +50,7 @@ jobs:
5050
5151
- name: Initialize and Analyze IaC
5252
id: codeql_iac
53-
uses: advanced-security/codeql-extractor-iac@v0.4.1
53+
uses: advanced-security/codeql-extractor-iac@v0.5.1
5454
5555
- name: Upload SARIF file
5656
uses: github/codeql-action/upload-sarif@v3

extractor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codeql-extractor-iac"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["GitHub"]
55

66
edition = "2024"

ql/lib/qlpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
library: true
33
warnOnImplicitThis: false
44
name: advanced-security/iac-all
5-
version: 0.5.0
5+
version: 0.5.1
66
dependencies:
77
codeql/util: ^1.0.12
88
codeql/yaml: ^1.0.25

ql/src/qlpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: advanced-security/iac-queries
2-
version: 0.5.0
2+
version: 0.5.1
33
groups:
44
- iac
55
- queries

0 commit comments

Comments
 (0)