Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 || '***' }}
Expand Down
2 changes: 1 addition & 1 deletion action/source/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
Loading