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