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'