-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Workflow to create GFM artifact(s) #56
base: main
Are you sure you want to change the base?
Conversation
Use artifact from action repo only
Ensure LIBCMARKDIR uses WORKDIR
Move WORKDIR pushd/popd to build script
OUT=$(jq </tmp/max.txt 'select(.>(now+864000|strftime("%FT%TZ")))') | ||
if [[ -n $OUT ]] | ||
then | ||
echo "Found a valid artifact for ${{ matrix.gfm_version }} (expires $OUT)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you should never use ${{ ... }}
inside a run:
block.
use:
env:
gfm_version: ${{ matrix.gfm_version }}
...
run:
echo "Found a valid artifact for $gfm_version (expires $OUT)"
...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Depending on what you're doing, it can result in security vulnerabilities or very surprising misbehaviors.
In this case, if your matrix was:
matrix:
gfm_version:
- hello"; touch /tmp/flag; echo "
then you'd be constructing a script of the form:
echo "Found a valid artifact for hello"; touch /tmp/flag; echo " (expires $OUT)"
which is fairly surprising.
https://github.com/check-spelling-sandbox/sturdy-adventure/actions/runs/13166687061/job/36748420310#step:6:14
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, thanks for the explanation.
It seems unlikely that the matrix would contain such a value, but I agree it is safer to protect the code by using an intermediate variable.
{ | ||
echo "Creating GFM binary in ${LIBCMARKDIR}" | ||
# disable stdout unless debug is on | ||
if [ "${{ inputs.debug }}" == 'true' ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's nice if you automatically debug on rerun...
|| [ "$GITHUB_RUN_ATTEMPT" != 1 ]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that you should also move this to an env:
, it isn't just ${{ matrix
, it's ${{
anything
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I realise that. Except perhaps $(( github.xxx }} for some values of xxx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for most of those, github has a $GITHUB_..., so you really should never do it :)... it's a safe enough rule.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AIUI, $GITHUB_
is replaced at run-time, whereas ${{ github.xxx }}
is replaced before passing the script to the runner. This means a simple replacement is not possible in general. In particular, Windows scripts may be tricky to fix.
Co-authored-by: Josh Soref <[email protected]> Signed-off-by: Sebb <[email protected]>
Co-authored-by: Josh Soref <[email protected]> Signed-off-by: Sebb <[email protected]>
Co-authored-by: Josh Soref <[email protected]> Signed-off-by: Sebb <[email protected]>
Co-authored-by: Josh Soref <[email protected]> Signed-off-by: Sebb <[email protected]>
This workflow runs once a week to create the GFM artifact if necessary.
Most weeks it should do nothing, as there should already be an artifact present.
The gap between runs could be increased, provided that the expiry date checking was also updated.