Use the GitHub-suggested safer pattern for shell interpolation. (#9567)
Using `${{ }}` to construct shell commands is risky, since the `${{ }}`
interpolation runs first and ignores shell quoting rules. This means
that shell commands that look safely quoted, like `echo "${{
github.event.issue.title }}"`, are actually vulnerable to shell
injection.
More details here:
https://github.blog/2023-08-09-four-tips-to-keep-your-github-actions-workflows-secure/ P
Predrag Gruevski committed
6c308aabaed9258a3151b2f8c6c8e58eb44a8b0c
Parent: 8bc1a3d
Committed by GitHub <noreply@github.com>
on 8/21/2023, 9:59:10 PM