From 13f61945f8752f5688d62731990eba284f7715ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9lio=20Rocha?= Date: Tue, 30 Jun 2026 14:13:21 +0100 Subject: [PATCH 1/2] chore: Bump Opengrep version to 1.23.0 Co-Authored-By: Claude Opus 4.8 --- .tool_version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tool_version b/.tool_version index e4264e9..bfbadb3 100644 --- a/.tool_version +++ b/.tool_version @@ -1 +1 @@ -1.21.0 \ No newline at end of file +1.23.0 \ No newline at end of file From 64afbecfa69a47abf901654f58d1d44c3d49db35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9lio=20Rocha?= Date: Tue, 30 Jun 2026 14:23:02 +0100 Subject: [PATCH 2/2] fix: Bump OPENGREP_VERSION to v1.23.0 in Dockerfile The Dockerfile ARG OPENGREP_VERSION controls which opengrep binary is downloaded at build time, but was still pinned to v1.21.0 while .tool_version was already bumped to 1.23.0. Align it to v1.23.0. Co-Authored-By: Claude Opus 4.8 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 433bb85..bb76717 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG OPENGREP_VERSION=v1.21.0 +ARG OPENGREP_VERSION=v1.23.0 # Build codacy-opengrep wrapper FROM golang:1.23-alpine3.21 AS builder