From 2129fdf3622e39ba46be4e1139af408e7e951cf3 Mon Sep 17 00:00:00 2001 From: Jirka Borovec <6035284+Borda@users.noreply.github.com> Date: Wed, 7 Aug 2024 10:59:05 +0200 Subject: [PATCH] fix(ci): resolve input str -> num conversion (#20169) --- .github/workflows/call-clear-cache.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/call-clear-cache.yml b/.github/workflows/call-clear-cache.yml index 09b5dc77f99b1..f1f0404299568 100644 --- a/.github/workflows/call-clear-cache.yml +++ b/.github/workflows/call-clear-cache.yml @@ -37,4 +37,4 @@ jobs: scripts-ref: v0.11.6 dry-run: ${{ github.event_name == 'pull_request' }} pattern: ${{ inputs.pattern || 'pypi_wheels' }} # setting str in case of PR / debugging - age-days: ${{ inputs.age-days || 0 }} # setting 0 in case of PR / debugging + age-days: ${{ fromJSON(inputs.age-days) || 0 }} # setting 0 in case of PR / debugging