Skip to content
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
52 changes: 26 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amplify-runner"
version = "0.4.5"
version = "0.4.6"
edition = "2021"
repository = "https://github.com/amplify-security/runner"
readme = "README.adoc"
Expand Down
4 changes: 2 additions & 2 deletions src/amplify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ use std::process::Stdio;
use tokei::{Config, Languages};
use tokio::process::Command;

const OPENGREP_VERSION: &str = "1.15.1";
const OPENGREP_VERSION: &str = "1.13.1";
// opengrep_musllinux_x86 from https://github.com/opengrep/opengrep/releases
const OPENGREP_CHECKSUM: [u8; 32] =
hex!("170f2dc6989d9cf0b1466cf4d654023a5ec951c9ffaf2c33db7ae1d1f76048f1");
hex!("322fb497d39b89f6a2af2c590284fb8e3d7f58d447954a8f32cf14a431faac39");
const OPENGREP_RULES_URI: &str =
"https://github.com/amplify-security/opengrep-rules/releases/download/latest/rules.json";

Expand Down