From e3778aac7f5e6ac42396019eeae6ec826128bd0b Mon Sep 17 00:00:00 2001 From: "Jose R. Gonzalez" Date: Fri, 7 Jun 2024 16:34:16 -0500 Subject: [PATCH] Add reusable setup-python action Signed-off-by: Jose R. Gonzalez --- .github/actions/setup-python/action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/actions/setup-python/action.yml diff --git a/.github/actions/setup-python/action.yml b/.github/actions/setup-python/action.yml new file mode 100644 index 00000000..e62c26e3 --- /dev/null +++ b/.github/actions/setup-python/action.yml @@ -0,0 +1,10 @@ +name: Setup Python +description: | + Consistently installs python across this project. + Should be used as a replacement for direct calls to actions/setup-python. +runs: + using: composite + steps: + - uses: actions/setup-python@v5 + with: + python-version: '3.9'