From 47efb43ef1f528561b146ee5100cdd3d618f4b1e Mon Sep 17 00:00:00 2001 From: Yogesh Chaudhary Date: Fri, 20 Feb 2026 10:39:23 +0530 Subject: [PATCH] fix: use virtual pypi index for rl-wrapper install Switches from python-local to the python virtual repository so pip can resolve rl-wrapper's dependencies. Also removes the version pin. --- .github/actions/rl-scanner/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/rl-scanner/action.yml b/.github/actions/rl-scanner/action.yml index eb017134..960d34e9 100644 --- a/.github/actions/rl-scanner/action.yml +++ b/.github/actions/rl-scanner/action.yml @@ -31,7 +31,7 @@ runs: - name: Install RL Wrapper shell: bash run: | - pip install rl-wrapper>=1.0.0 --index-url "https://${{ env.PRODSEC_TOOLS_USER }}:${{ env.PRODSEC_TOOLS_TOKEN }}@a0us.jfrog.io/artifactory/api/pypi/python-local/simple" + pip install rl-wrapper --index-url "https://${{ env.PRODSEC_TOOLS_USER }}:${{ env.PRODSEC_TOOLS_TOKEN }}@a0us.jfrog.io/artifactory/api/pypi/python/simple" - name: Run RL Scanner shell: bash