You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Only allow alphanumeric characters, hyphens, periods, plus signs, underscores, and spaces
46
50
if ! echo "$packages" | grep -E '^[a-zA-Z0-9._+-]+( [a-zA-Z0-9._+-]+)*$' > /dev/null; then
47
51
echo "::error::Invalid package names in extra-install-packages. Only alphanumeric characters, hyphens, periods, plus signs, underscores, and spaces are allowed."
@@ -51,6 +55,9 @@ runs:
51
55
# Using a pre-built docker image in GitHub container registry instead of NPM to reduce possible attack vectors.
52
56
- name: Setup container
53
57
shell: bash
58
+
env:
59
+
API_TOKEN: ${{ inputs.api-token }}
60
+
EXTRA_DANGERFILE: ${{ inputs.extra-dangerfile }}
54
61
run: |
55
62
# Start a detached container with all necessary volumes and environment variables
0 commit comments