From 4e7dfbedd267723df978c345048bbebe9b13e50c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlado=20Paji=C4=87?= Date: Sun, 21 Sep 2025 23:27:39 +0200 Subject: [PATCH] chore(version): bump to v2.17.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 276554b..e03030d 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.1 + image: docker://ghcr.io/vladopajic/go-test-coverage:v2.17.0 args: - --config=${{ inputs.config || '***' }} - --profile=${{ inputs.profile || '***' }} diff --git a/action/source/action.yml b/action/source/action.yml index 972c323..3af2a28 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.1 + default: v2.17.0 type: string outputs: diff --git a/main.go b/main.go index 7698576..b3d9f6d 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( ) const ( - Version = "v2.16.1" // TOOL_VERSION: when changing version update version in other places + Version = "v2.17.0" // TOOL_VERSION: when changing version update version in other places Name = "go-test-coverage" )