Skip to content

Commit bda8985

Browse files
committed
fix: the tags used in shared github actions
1 parent f6c2a7b commit bda8985

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/extract-fixtures/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ runs:
2222
MERGED: ${{ inputs.merged }}
2323
with:
2424
repository: ${{ steps.github.outputs.action_repository }}
25-
ref: ${{ steps.github.outputs.action_ref }}
25+
ref: ${{ steps.github.outputs.action_sha || steps.github.outputs.action_ref }}
2626
dockerfile: Dockerfile
2727
args: extract-fixtures --directory="$OUTPUT" --merged="$MERGED"

.github/actions/test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
SPECS: ${{ inputs.specs }}
4343
with:
4444
repository: ${{ steps.github.outputs.action_repository }}
45-
ref: ${{ steps.github.outputs.action_ref }}
45+
ref: ${{ steps.github.outputs.action_sha || steps.github.outputs.action_ref }}
4646
dockerfile: Dockerfile
4747
opts: --network=host
4848
args: test --url="$URL" --json="$JSON" --specs="$SPECS" --subdomain-url="$SUBDOMAIN" -- ${{ inputs.args }}

0 commit comments

Comments
 (0)