From 6fbaf95da7029b64c3d8f08161d7620f95f381fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlado=20Paji=C4=87?= Date: Fri, 5 Sep 2025 11:17:13 +0200 Subject: [PATCH] version bump --- 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 b986ecc..276554b 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.16.0 + image: docker://ghcr.io/vladopajic/go-test-coverage:v2.16.1 args: - --config=${{ inputs.config || '***' }} - --profile=${{ inputs.profile || '***' }} diff --git a/action/source/action.yml b/action/source/action.yml index e1cdabb..972c323 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.16.0 + default: v2.16.1 type: string outputs: diff --git a/main.go b/main.go index a290e0e..7698576 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( ) const ( - Version = "v2.16.0" // TOOL_VERSION: when changing version update version in other places + Version = "v2.16.1" // TOOL_VERSION: when changing version update version in other places Name = "go-test-coverage" )