Skip to content

Commit 3bc7975

Browse files
Merge pull request #19 from step-security/docker-prov
Fix issue with provenance generation
2 parents 7457785 + 0cb3cb3 commit 3bc7975

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,9 @@ jobs:
168168
push: ${{ steps.check_conditions.outputs.should_push }}
169169
- name: Output image
170170
id: image
171+
env:
172+
IMAGE_REGISTRY: ghcr.io
173+
IMAGE_NAME: ${{ github.repository }}
171174
run: |
172175
# NOTE: Set the image as an output because the `env` context is not
173176
# available to the inputs of a reusable workflow call.

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ outputs:
143143

144144
runs:
145145
using: 'docker'
146-
image: 'docker://ghcr.io/step-security/publish-unit-test-result-action:v1.0.2'
146+
image: 'docker://ghcr.io/step-security/publish-unit-test-result-action:v1.0.3'
147147

148148
branding:
149149
icon: 'check-square'

python/publish/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
UnitTestRunDeltaResults, UnitTestRunResultsOrDeltaResults, ParseError
1212

1313
# keep the version in sync with action.yml
14-
__version__ = 'v1.0.2'
14+
__version__ = 'v1.0.3'
1515

1616
logger = logging.getLogger('publish')
1717
digest_prefix = '[test-results]:data:'

0 commit comments

Comments
 (0)