From 06413569e8e4dab0485b55f8b9b8f5efa427b13b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlado=20Paji=C4=87?= Date: Mon, 10 Nov 2025 11:57:16 +0100 Subject: [PATCH] bump to v2.18.0 --- action.yml | 2 +- action/source/action.yml | 2 +- main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index d5c88c4..09475e3 100644 --- a/action.yml +++ b/action.yml @@ -142,7 +142,7 @@ outputs: runs: using: docker # TOOL_VERSION: when changing version update version in other places - image: docker://ghcr.io/vladopajic/go-test-coverage:v2.17.1 + image: docker://ghcr.io/vladopajic/go-test-coverage:v2.18.0 args: - --config=${{ inputs.config || '***' }} - --profile=${{ inputs.profile || '***' }} diff --git a/action/source/action.yml b/action/source/action.yml index fa34583..9cc2270 100644 --- a/action/source/action.yml +++ b/action/source/action.yml @@ -133,7 +133,7 @@ inputs: description: Version of go-test-coverage source to run required: false # TOOL_VERSION: when changing version update version in other places - default: v2.17.1 + default: v2.18.0 type: string outputs: diff --git a/main.go b/main.go index f5952cd..13799ac 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( ) const ( - Version = "v2.17.1" // TOOL_VERSION: when changing version update version in other places + Version = "v2.18.0" // TOOL_VERSION: when changing version update version in other places Name = "go-test-coverage" )