From 1a3ad1baf8881e243bfab006adf18030cf32f67a Mon Sep 17 00:00:00 2001 From: Julien Carsique Date: Wed, 5 Aug 2026 18:46:19 +0200 Subject: [PATCH] PREQ-7805 Fix config-pip README usage example order The example showed actions/setup-python running before config-pip, which defeats the purpose: setup-python's internal pip upgrade would still hit public pypi.org before pip is routed through Repox. Swap the order so config-pip runs first, matching the fix already applied in sonardata-tools#59 and gh-action_releasability#150. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f787877..63327ab6 100644 --- a/README.md +++ b/README.md @@ -1196,10 +1196,10 @@ permissions: contents: read steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + - uses: SonarSource/ci-github-actions/config-pip@v1 - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: python-version: 3.12 - - uses: SonarSource/ci-github-actions/config-pip@v1 - run: pip install pipenv ```