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" )