Skip to content

Commit 708905a

Browse files
[STYLE] Another regression fix (- WIP #485 -)
Changes in file .github/actions/check-control/action.yml: * removed faulty conditional Changes in file .github/actions/run-minimal-acceptance-tests/action.yml: * removed faulty conditional Changes in file .github/actions/setup-py-reqs/action.yml: * removed faulty conditional
1 parent c3d147b commit 708905a

File tree

3 files changed

+0
-18
lines changed

3 files changed

+0
-18
lines changed

.github/actions/check-control/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,6 @@ runs:
138138
exit 1
139139
fi
140140
141-
# Reject any characters that enable ref modifiers or ambiguity
142-
if [[ "$input" =~ [[:space:]~^\{\}:@\*\?$$$$] ]]; then
143-
printf "::error title='Invalid':: %s\n" "Error: input contains disallowed characters" >&2
144-
exit 1
145-
fi
146-
147141
# If it's a 40-char SHA, accept directly
148142
if [[ "$input" =~ ^[0-9a-f]{40}$ ]]; then
149143
resolved_sha="$input"

.github/actions/run-minimal-acceptance-tests/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,6 @@ runs:
111111
exit 1
112112
fi
113113
114-
# Reject any characters that enable ref modifiers or ambiguity
115-
if [[ "$input" =~ [[:space:]~^\{\}:@\*\?$$$$] ]]; then
116-
printf "::error title='Invalid':: %s\n" "Error: input contains disallowed characters" >&2
117-
exit 1
118-
fi
119-
120114
# If it's a 40-char SHA, accept directly
121115
if [[ "$input" =~ ^[0-9a-f]{40}$ ]]; then
122116
resolved_sha="$input"

.github/actions/setup-py-reqs/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,6 @@ runs:
9696
exit 1
9797
fi
9898
99-
# Reject any characters that enable ref modifiers or ambiguity
100-
if [[ "$input" =~ [[:space:]~^\{\}:@\*\?$$$$] ]]; then
101-
printf "::error title='Invalid':: %s\n" "Error: input contains disallowed characters" >&2
102-
exit 1
103-
fi
104-
10599
# If it's a 40-char SHA, accept directly
106100
if [[ "$input" =~ ^[0-9a-f]{40}$ ]]; then
107101
resolved_sha="$input"

0 commit comments

Comments
 (0)