From 35a560a4171ba7806947957af1262b255b1062b6 Mon Sep 17 00:00:00 2001 From: "aikido-autofix[bot]" <119856028+aikido-autofix[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 07:20:26 +0000 Subject: [PATCH] fix(security): autofix Template Injection in GitHub Workflows Action --- .github/workflows/performance_quickstarts.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/performance_quickstarts.yml b/.github/workflows/performance_quickstarts.yml index 7d78a05..1f6c4c7 100644 --- a/.github/workflows/performance_quickstarts.yml +++ b/.github/workflows/performance_quickstarts.yml @@ -295,11 +295,13 @@ jobs: shell: bash env: TIMEFOLD_LICENSE: ${{ secrets.TIMEFOLD_SOLVER_CI_PROD_LICENSE }} + RUNS: ${{ github.event.inputs.runs }} + TIME_LIMIT: ${{ github.event.inputs.time_limit }} run: | python3 timefold-solver-benchmarks/benchmark-quickstarts.py \ ${{ matrix.example }} ./sut-app \ - --runs ${{ github.event.inputs.runs }} \ - --time-limit ${{ github.event.inputs.time_limit }} \ + --runs $RUNS \ + --time-limit $TIME_LIMIT \ --base-port $((8080 + ${{ strategy.job-index }})) \ --output sut.csv echo "RANGE_MID=$(tail -1 sut.csv | cut -d',' -f3 | tr -cd '0-9' | xargs)" >> "$GITHUB_OUTPUT"