Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore]: Create release for v0.4.1 #170

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/action/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13530,7 +13530,7 @@ const toolcache = __importStar(__nccwpck_require__(7784));
const github = __importStar(__nccwpck_require__(5438));
const toolrunner = __importStar(__nccwpck_require__(8159));
exports.EXTRACTOR_REPOSITORY = "advanced-security/codeql-extractor-iac";
exports.EXTRACTOR_VERSION = "v0.4.0"; // stable version
exports.EXTRACTOR_VERSION = "v0.4.1"; // stable version
async function newCodeQL() {
var version = core.getInput("extractor-version");
if (version === "") {
Expand Down
2 changes: 1 addition & 1 deletion .github/action/src/codeql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as github from "@actions/github";
import * as toolrunner from "@actions/exec/lib/toolrunner";

export const EXTRACTOR_REPOSITORY = "advanced-security/codeql-extractor-iac";
export const EXTRACTOR_VERSION = "v0.4.0"; // stable version
export const EXTRACTOR_VERSION = "v0.4.1"; // stable version

export interface CodeQLConfig {
// The path to the codeql bundle.
Expand Down
2 changes: 1 addition & 1 deletion .release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: codeql-extractor-iac
version: 0.4.0
version: 0.4.1
default: false

locations:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

```yaml
- name: Initialize and Analyze IaC
uses: advanced-security/[email protected].0
uses: advanced-security/[email protected].1
```

**Note:** See full documentation on [Workflows][docs-workflows].
Expand Down
2 changes: 1 addition & 1 deletion codeql-extractor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "iac"
display_name: "IAC"
version: 0.4.0
version: 0.4.1
column_kind: "utf8"
legacy_qltest_extraction: true
github_api_languages:
Expand Down
2 changes: 1 addition & 1 deletion extractor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "codeql-extractor-iac"
version = "0.4.0"
version = "0.4.1"
authors = ["GitHub"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion ql/lib/qlpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
library: true
warnOnImplicitThis: false
name: advanced-security/iac-all
version: 0.4.0
version: 0.4.1
dependencies:
codeql/util: ^0.1.2
codeql/yaml: ^0.1.2
Expand Down
2 changes: 1 addition & 1 deletion ql/src/qlpack.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: advanced-security/iac-queries
version: 0.4.0
version: 0.4.1
groups:
- iac
- queries
Expand Down
Loading