Skip to content

Commit ebf170c

Browse files
committed
Error Fixup
- Replaced `inputs.` with `matrix.` This resovles the `actionlint` errors
1 parent 3b47178 commit ebf170c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/reusable-nox.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
include:
14-
# Inputs:
14+
# matrix:
1515
# session: name of session
1616
# python-versions: comma-separated list of Python versions to install
1717
# extra-args (optional): extra arguments to pass to nox session.
@@ -43,18 +43,18 @@ jobs:
4343
- name: Setup nox
4444
uses: wntrblm/[email protected]
4545
with:
46-
python-versions: "${{ inputs.python-versions }}"
46+
python-versions: "${{ matrix.python-versions }}"
4747

4848
- name: Graft ansible-core
4949
uses: ansible-community/github-action-run-nox@v1
5050
with:
5151
sessions: clone-core
52-
force-pythons: "${{ inputs.python-versions }}"
52+
force-pythons: "${{ matrix.python-versions }}"
5353

5454
- name: "Run nox session"
5555
uses: ansible-community/github-action-run-nox@v1
5656
with:
5757
sessions: "${{ matrix.session }}"
58-
extra-args: "${{ inputs.extra-args || '' }}"
59-
force-pythons: "${{ inputs.python-versions }}"
58+
extra-args: "${{ matrix.extra-args || '' }}"
59+
force-pythons: "${{ matrix.python-versions }}"
6060

0 commit comments

Comments
 (0)