Skip to content

Commit a6755ce

Browse files
committed
github.event
1 parent fcbe39f commit a6755ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/setup/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
name: Setup poetry
1313
steps:
1414

15-
- name: Set up Python ${{ inputs.python-version }}
15+
- name: Set up Python
1616
uses: actions/setup-python@v4
1717
with:
18-
python-version: ${{ inputs.python-version }}
18+
python-version: ${{ github.event.inputs.python-version }}
1919

2020
- name: Install Poetry
2121
run: python -m pip install poetry
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/cache@v3
2929
with:
3030
path: poetry.lock
31-
key: ${{ inputs.os }}-${{ inputs.python-version }}-poetry-${{ steps.poetry_version.outputs.VERSION }}-${{ hashFiles('pyproject.toml') }}
31+
key: ${{ github.event.inputs.os }}-${{ github.event.inputs.python-version }}-poetry-${{ steps.poetry_version.outputs.VERSION }}-${{ hashFiles('pyproject.toml') }}
3232

3333
- name: Install project dependencies
3434
run: poetry install -vvv --no-root

0 commit comments

Comments
 (0)