Skip to content

chore(packaging): INT-04 JSR packaging prep — runtime publish-ready, NOT published (Refs #181 #260) - #261

Merged
hyperpolymath merged 1 commit into
mainfrom
int04-181-packaging
May 19, 2026
Merged

chore(packaging): INT-04 JSR packaging prep — runtime publish-ready, NOT published (Refs #181 #260)#261
hyperpolymath merged 1 commit into
mainfrom
int04-181-packaging

chore(packaging): INT-04 JSR packaging prep — runtime publish-ready, …

87f4adb
Select commit
Loading
Failed to load commit list.
GitHub Advanced Security / Semgrep OSS failed May 19, 2026 in 4s

1 new alert including 1 error

New alerts in code changed by this pull request

  • 1 error

See annotations below for details.

View all branch alerts.

Annotations

Check failure on line 50 in .github/workflows/publish-jsr.yml

See this annotation in the file changed.

Code scanning / Semgrep OSS

Semgrep Finding: yaml.github-actions.security.run-shell-injection.run-shell-injection Error

Using variable interpolation ${...} with github context data in a run: step could allow an attacker to inject their own code into the runner. This would allow them to steal secrets and code. github context data can have arbitrary user input and should be treated as untrusted. Instead, use an intermediate environment variable with env: to store the data and use the environment variable in the run: script. Be sure to use double-quotes the environment variable, like this: "$ENVVAR".