From f64d762ad9ef43b816e9df4c24cf5b2fe3117319 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Wed, 18 Sep 2024 17:01:36 -0700 Subject: [PATCH] one more time without eval --- .github/actions/test-ruby/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test-ruby/action.yml b/.github/actions/test-ruby/action.yml index cf7ef179..67970473 100644 --- a/.github/actions/test-ruby/action.yml +++ b/.github/actions/test-ruby/action.yml @@ -56,7 +56,7 @@ runs: run: | echo "$ADDITIONAL_SETUP" | jq -r '.[]' | while read -r command; do echo "Executing additional setup command: $command" - eval "$command" + $command done - uses: actions/cache@v4