From d9f3e7783249cd84f8bff4f0e1fe678419a526c1 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Sun, 29 Oct 2023 16:12:51 -0700 Subject: [PATCH] Pin missed file to Python 3.11 --- build/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/action.yml b/build/action.yml index 076cd5d..d6f5306 100644 --- a/build/action.yml +++ b/build/action.yml @@ -8,7 +8,7 @@ inputs: python-version: description: 'The version of Python to use in the CI' required: true - default: '3.x' + default: '3.11' package-prefix: description: | The prefix (or name) of your pacakge (if applicable) to use @@ -27,7 +27,7 @@ runs: awk -F '\/' '{ print tolower($2) }' | tr '_' '-' ) >> $GITHUB_OUTPUT - - name: Set up Python 3.x + - name: Set up Python 3.11 uses: actions/setup-python@v4 with: python-version: ${{ inputs.python-version }}