From 603e5f70d6017373253e74b5f7e4b364d8fac93c Mon Sep 17 00:00:00 2001 From: uazo <29201891+uazo@users.noreply.github.com> Date: Mon, 8 Jan 2024 20:32:03 +0500 Subject: [PATCH] Update check_nist.yaml --- .github/workflows/check_nist.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check_nist.yaml b/.github/workflows/check_nist.yaml index a0a5b4d16..ed4f96e95 100644 --- a/.github/workflows/check_nist.yaml +++ b/.github/workflows/check_nist.yaml @@ -33,8 +33,12 @@ jobs: cd cves CY=$(date +%Y) - docker run --rm --name tapir stratosphereips/tapir:latest \ - bash -c "python3 tapir.py -y 2020-$CY libjxl -s" >libjxl.ansi + for i in $(seq 2020 $CY) + do + echo Asking for $i year + docker run --rm --name tapir stratosphereips/tapir:latest \ + bash -c "python3 tapir.py -y $i libjxl -s" >>libjxl.ansi + done sed -e 's/\x1b\[[0-9;]*m//g' libjxl.txt rm libjxl.ansi