Skip to content

Commit 8cc292f

Browse files
Merge pull request #8 from Checkmarx/UpdateVorpal1.1.4
SAST-7270- Update Vorpal Image Version To 1.1.4
2 parents 8d2c401 + f35ea6b commit 8cc292f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Build Reviewdog executable using Alpine
22
FROM alpine:latest AS build-reviewdog
33

4-
ENV REVIEWDOG_VERSION=v0.20.1
4+
ENV REVIEWDOG_VERSION=v0.20.3
55

66
# Install necessary packages and Reviewdog
77
RUN apk --no-cache add curl bash \
88
&& curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b /usr/local/bin ${REVIEWDOG_VERSION}
99

1010
# Base Image with Vorpal CLI
11-
FROM checkmarx/vorpal-cli:1.0.116 AS build-vorpal
11+
FROM checkmarx/vorpal-cli:1.1.4 AS build-vorpal
1212

1313
# Set the working directory
1414
WORKDIR /app/bin

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This action runs `Vorpal` with [reviewdog](https://github.com/reviewdog/reviewdo
66

77
Unlike traditional SAST engines that scan entire projects and analyze complex source code flows, Vorpal focuses on individual files and short code snippets, including AI-generated code. It empowers developers with clear, actionable feedback on detected issues, complete with descriptions and remediation advice, enabling them to quickly enhance the security of their codebases. While Vorpal doesn't delve into specific attack vectors, it emphasizes proactive security measures early in the development process, which not only strengthens code security but also reduces and refines findings in later SAST scans, making them more precise and manageable.
88

9-
Vorpal currently supports `Java`, `JavaScript (Node.js)`, `C#`, and `Python`.
9+
Vorpal currently supports `Java`, `JavaScript (Node.js)`, `C#`,`Python` and `Go`.
1010

1111
## Examples
1212
### With github-pr-check

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fi
5959
echo "${DATETIME} - INF : Reviewdog executing on version $(reviewdog -version)"
6060
cat "$all_results_file" | reviewdog -efm '%f:%l:%c:%m' \
6161
-name="Vorpal" \
62-
-reporter="${INPUT_REPORTER:-github-pr-check}" \
62+
-reporter="${INPUT_REPORTER}" \
6363
-filter-mode="${INPUT_FILTER_MODE}" \
6464
-fail-on-error="${INPUT_FAIL_ON_ERROR}" \
6565
-level="${INPUT_LEVEL}" \

0 commit comments

Comments
 (0)