From 0bbea57443453ce02a6e89539b9b82c7b49e84b6 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Thu, 28 Nov 2024 21:48:03 +0000 Subject: [PATCH] switch github.event.inputs.python-version to inputs.python-version --- .github/workflows/ci-python-poetry-with-docker.yml | 2 +- .github/workflows/ci-python-poetry.yml | 2 +- .github/workflows/ci-python-with-docker.yml | 2 +- .github/workflows/ci-python.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-python-poetry-with-docker.yml b/.github/workflows/ci-python-poetry-with-docker.yml index 4596e5d..f0db3f0 100644 --- a/.github/workflows/ci-python-poetry-with-docker.yml +++ b/.github/workflows/ci-python-poetry-with-docker.yml @@ -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 diff --git a/.github/workflows/ci-python-poetry.yml b/.github/workflows/ci-python-poetry.yml index 9bf1dba..2f077c4 100644 --- a/.github/workflows/ci-python-poetry.yml +++ b/.github/workflows/ci-python-poetry.yml @@ -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 diff --git a/.github/workflows/ci-python-with-docker.yml b/.github/workflows/ci-python-with-docker.yml index ffe7618..d8aedaa 100644 --- a/.github/workflows/ci-python-with-docker.yml +++ b/.github/workflows/ci-python-with-docker.yml @@ -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 diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index 413ab2c..848f1c2 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -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