From 5aa9d40d4d2432503f01db5d50e8018a22e38790 Mon Sep 17 00:00:00 2001 From: Natig Babayev Date: Fri, 29 Mar 2024 09:34:20 +0200 Subject: [PATCH] Prepare for release 1.23.6. (#63) Co-authored-by: GitHub Action --- Dockerfile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e7deff7..d885a1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM openjdk:jre-slim -ADD https://github.com/detekt/detekt/releases/download/v1.23.5/detekt-cli-1.23.5-all.jar /usr/local/bin/detekt-cli-all.jar +ADD https://github.com/detekt/detekt/releases/download/v1.23.6/detekt-cli-1.23.6-all.jar /usr/local/bin/detekt-cli-all.jar RUN chmod +x /usr/local/bin/detekt-cli-all.jar RUN cd $GITHUB_WORKSPACE diff --git a/README.md b/README.md index 01f8a99..acfbd35 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ on: uses: actions/checkout@v2 - name: "detekt" - uses: natiginfo/action-detekt-all@1.23.5 + uses: natiginfo/action-detekt-all@1.23.6 ``` ## Usage with [CLI parameters](https://detekt.github.io/detekt/cli.html#use-the-cli) @@ -43,7 +43,7 @@ on: uses: actions/checkout@v2 - name: "detekt" - uses: natiginfo/action-detekt-all@1.23.5 + uses: natiginfo/action-detekt-all@1.23.6 with: args: --config detekt.yml ```