Skip to content

Commit 3b47178

Browse files
committed
Working to resolve failed checks
- Replaced (temp) x1101/github-action-run-nox with ansible-community/github-action-run-nox - Repalced "matrix.sessions" with "matrix.session" - All sessions now in quotes
1 parent ed1e54b commit 3b47178

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/reusable-nox.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
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.
18-
- session: static
18+
- session: "static"
1919
python-versions: "3.12"
20-
- session: formatters_check
20+
- session: "formatters_check"
2121
python-versions: "3.12"
22-
- session: typing
22+
- session: "typing"
2323
python-versions: "3.12"
24-
- session: spelling
24+
- session: "spelling"
2525
python-versions: "3.12"
2626
- session: "checkers(rstcheck)"
2727
python-versions: "3.12"
@@ -46,15 +46,15 @@ jobs:
4646
python-versions: "${{ inputs.python-versions }}"
4747

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

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

0 commit comments

Comments
 (0)