Skip to content
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

Open
wants to merge 25 commits into
base: main
Choose a base branch
from

Conversation

sebbASF
Copy link
Contributor

@sebbASF sebbASF commented Jun 15, 2024

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.

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)"
Copy link

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)"
...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not?

Copy link

@jsoref jsoref Feb 5, 2025

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

Copy link
Contributor Author

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' ]
Copy link

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 ]

Copy link

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

Copy link
Contributor Author

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

Copy link

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.

Copy link
Contributor Author

@sebbASF sebbASF Feb 5, 2025

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.

sebbASF and others added 4 commits February 5, 2025 21:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants