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 @@ -157,7 +157,7 @@ outputs:

runs:
using: 'docker'
image: 'docker://ghcr.io/enricomi/publish-unit-test-result-action:v2.20.0'
image: 'docker://ghcr.io/enricomi/publish-unit-test-result-action:v2.21.0'

branding:
icon: 'check-circle'
Expand Down
2 changes: 1 addition & 1 deletion docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ inputs:
required: false
docker_tag:
description: 'The docker tag to pull the pre-built action from.'
default: 'v2.20.0'
default: 'v2.21.0'
required: false

outputs:
Expand Down
2 changes: 1 addition & 1 deletion python/publish/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
UnitTestRunDeltaResults, UnitTestRunResultsOrDeltaResults, ParseError

# keep the version in sync with action.yml and docker/action.yml
__version__ = 'v2.20.0'
__version__ = 'v2.21.0'

logger = logging.getLogger('publish')
digest_prefix = '[test-results]:data:'
Expand Down
Loading