From ee96cdb02291b013fa0c9ab421a0946823770044 Mon Sep 17 00:00:00 2001 From: abhinavkumarsph Date: Mon, 15 Jun 2026 08:57:40 +0800 Subject: [PATCH 1/2] fix: pip missing from install stage --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 46603e8..87dbddb 100644 --- a/action.yml +++ b/action.yml @@ -12,6 +12,11 @@ runs: steps: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 + with: + python-version: '3.14' + - name: Install and upgrade pip + shell: bash + run: python -m pip install --upgrade pip - name: Install pre-commit and run autoupdate shell: bash run: | From 28d60c983df5a2bc03864444625f4f41606067b3 Mon Sep 17 00:00:00 2001 From: abhinavkumarsph Date: Mon, 15 Jun 2026 09:13:50 +0800 Subject: [PATCH 2/2] fix: install pip --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 87dbddb..24b472b 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ runs: python-version: '3.14' - name: Install and upgrade pip shell: bash - run: python -m pip install --upgrade pip + run: python -m pip install - name: Install pre-commit and run autoupdate shell: bash run: |