From 86c17038f7a12ba449fd9d09e22a2d3a0a367a44 Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Sat, 10 May 2025 23:04:32 -0400 Subject: [PATCH] chore: switch to python3 When using self-hosted runners, `python` might not actually call `python3` and just give an error, so we can swap to this. --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 4cf4357..0fa3b5d 100644 --- a/action.yaml +++ b/action.yaml @@ -23,7 +23,7 @@ runs: using: "composite" steps: - name: Install python pip - run: python -m pip install --upgrade pip + run: python3 -m pip install --upgrade pip shell: bash - name: Erase MySQL package run: sudo apt-get purge mysql-* || true