Skip to content

Commit a48b432

Browse files
committed
Rework
1 parent 59dee57 commit a48b432

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/verify.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
id: python
4949
uses: actions/setup-python@v5
5050
with:
51-
python-version: ${{ need.cache.outputs.python-versionN }}
51+
python-version: ${{ needs.cache.outputs.python-version }}
5252
- name: Create or reuse cache
5353
id: cache-reuse
5454
uses: ./.github/actions/restore-venv
@@ -70,11 +70,11 @@ jobs:
7070
uses: actions/checkout@v5
7171
with:
7272
persist-credentials: false
73-
- name: Set up Python ${{ need.cache.outputs.python-versionN }}
73+
- name: Set up Python ${{ needs.cache.outputs.python-version }}
7474
id: python
7575
uses: actions/setup-python@v5
7676
with:
77-
python-version: ${{ need.cache.outputs.python-versionN }}
77+
python-version: ${{ needs.cache.outputs.python-version }}
7878
- name: Create or reuse cache
7979
id: cache-reuse
8080
uses: ./.github/actions/restore-venv
@@ -111,11 +111,11 @@ jobs:
111111
steps:
112112
- name: Check out committed code
113113
uses: actions/checkout@v5
114-
- name: Set up Python ${{ need.cache.outputs.python-versionN }}
114+
- name: Set up Python ${{ needs.cache.outputs.python-version }}
115115
id: python
116116
uses: actions/setup-python@v5
117117
with:
118-
python-version: ${{ need.cache.outputs.python-versionN }}
118+
python-version: ${{ needs.cache.outputs.python-version }}
119119
- name: Create or reuse cache
120120
id: cache-reuse
121121
uses: ./.github/actions/restore-venv
@@ -190,11 +190,11 @@ jobs:
190190
uses: actions/checkout@v5
191191
with:
192192
persist-credentials: false
193-
- name: Set up Python ${{ need.cache.outputs.python-versionN }}
193+
- name: Set up Python ${{ needs.cache.outputs.python-version }}
194194
id: python
195195
uses: actions/setup-python@v5
196196
with:
197-
python-version: ${{ need.cache.outputs.python-versionN }}
197+
python-version: ${{ needs.cache.outputs.python-version }}
198198
- name: Create or reuse cache
199199
id: cache-reuse
200200
uses: ./.github/actions/restore-venv
@@ -240,11 +240,11 @@ jobs:
240240
steps:
241241
- name: Check out committed code
242242
uses: actions/checkout@v5
243-
- name: Set up Python ${{ need.cache.outputs.python-versionN }}
243+
- name: Set up Python ${{ needs.cache.outputs.python-version }}
244244
id: python
245245
uses: actions/setup-python@v5
246246
with:
247-
python-version: ${{ need.cache.outputs.python-versionN }}
247+
python-version: ${{ needs.cache.outputs.python-version }}
248248
- name: Create or reuse cache
249249
id: cache-reuse
250250
uses: ./.github/actions/restore-venv
@@ -333,11 +333,11 @@ jobs:
333333
steps:
334334
- name: Check out committed code
335335
uses: actions/checkout@v5
336-
- name: Set up Python ${{ need.cache.outputs.python-versionN }}
336+
- name: Set up Python ${{ needs.cache.outputs.python-version }}
337337
id: python
338338
uses: actions/setup-python@v5
339339
with:
340-
python-version: ${{ need.cache.outputs.python-versionN }}
340+
python-version: ${{ needs.cache.outputs.python-version }}
341341
- name: Create or reuse cache
342342
id: cache-reuse
343343
uses: ./.github/actions/restore-venv

0 commit comments

Comments
 (0)