From 97f930006be8ef197926dd58e00ede0d562730da Mon Sep 17 00:00:00 2001 From: Santiago Fraire Willemoes Date: Tue, 25 Nov 2025 16:11:41 +0000 Subject: [PATCH] fix: use pip as module --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index cdb5359..a1d9399 100644 --- a/action.yaml +++ b/action.yaml @@ -37,4 +37,4 @@ runs: COMMITIZEN_VERSION: ${{ steps.set-vars.outputs.commitizen-version }} EXTRA_REQUIREMENTS: ${{ inputs.extra_requirements }} run: | - pip install -U commitizen${COMMITIZEN_VERSION} ${EXTRA_REQUIREMENTS} + python -m pip install -U commitizen${COMMITIZEN_VERSION} ${EXTRA_REQUIREMENTS}