switch github.event.inputs.python-version to inputs.python-version

This commit is contained in:
Luke Tainton 2024-11-28 21:48:03 +00:00
parent b2f7d2a100
commit 0bbea57443
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ jobs:
- name: Set python-version
id: python-version
run: |
PYTHON_VERSION=${{ github.event.inputs.python-version }}
PYTHON_VERSION=${{ inputs.python-version }}
echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT
- name: Check out repository code
uses: actions/checkout@v4.1.7

View File

@ -19,7 +19,7 @@ jobs:
- name: Set python-version
id: python-version
run: |
PYTHON_VERSION=${{ github.event.inputs.python-version }}
PYTHON_VERSION=${{ inputs.python-version }}
echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT
- name: Check out repository code
uses: actions/checkout@v4.1.7

View File

@ -19,7 +19,7 @@ jobs:
- name: Set python-version
id: python-version
run: |
PYTHON_VERSION=${{ github.event.inputs.python-version }}
PYTHON_VERSION=${{ inputs.python-version }}
echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT
- name: Check out repository code
uses: actions/checkout@v4.1.7

View File

@ -19,7 +19,7 @@ jobs:
- name: Set python-version
id: python-version
run: |
PYTHON_VERSION=${{ github.event.inputs.python-version }}
PYTHON_VERSION=${{ inputs.python-version }}
echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT
- name: Check out repository code
uses: actions/checkout@v4.1.7