Skip to content

Commit ee27f1c

Browse files
authored
v7.5.0
2 parents 9ee7bcc + 8bf7483 commit ee27f1c

13 files changed

Lines changed: 36 additions & 36 deletions

.github/workflows/ApplicationTesting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
uses: actions/checkout@v6
9090

9191
- name: 📥 Download artifacts '${{ inputs.wheel }}' from 'Package' job
92-
uses: pyTooling/download-artifact@v7
92+
uses: pyTooling/download-artifact@v8
9393
with:
9494
name: ${{ inputs.wheel }}
9595
path: install
@@ -307,7 +307,7 @@ jobs:
307307

308308
- name: 📤 Upload 'TestReportSummary.xml' artifact
309309
if: inputs.apptest_xml_artifact != ''
310-
uses: pyTooling/upload-artifact@v6
310+
uses: pyTooling/upload-artifact@v7
311311
with:
312312
name: ${{ inputs.apptest_xml_artifact }}-${{ matrix.system }}-${{ matrix.runtime }}-${{ matrix.python }}
313313
working-directory: report/unit

.github/workflows/InstallPackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
steps:
5555
- name: 📥 Download artifacts '${{ inputs.wheel }}' from 'Package' job
56-
uses: pyTooling/download-artifact@v7
56+
uses: pyTooling/download-artifact@v8
5757
with:
5858
name: ${{ inputs.wheel }}
5959
path: install

.github/workflows/LaTeXDocumentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- ${{ github.workspace }}/latex:/latex
7070
steps:
7171
- name: 📥 Download artifacts '${{ inputs.latex_artifact }}' from 'SphinxDocumentation' job
72-
uses: pyTooling/download-artifact@v7
72+
uses: pyTooling/download-artifact@v8
7373
with:
7474
name: ${{ inputs.latex_artifact }}
7575
path: latex
@@ -86,7 +86,7 @@ jobs:
8686
latexmk --${{ inputs.processor }} --interaction=nonstopmode -file-line-error -max-print-line=250 ${HALT_ON_ERROR} "${{ inputs.document }}.tex"
8787
8888
- name: 📤 Upload 'PDF Documentation' artifact
89-
uses: pyTooling/upload-artifact@v6
89+
uses: pyTooling/upload-artifact@v7
9090
if: inputs.pdf_artifact != ''
9191
with:
9292
name: ${{ inputs.pdf_artifact }}

.github/workflows/Package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
run: python setup.py bdist_wheel
107107

108108
- name: 📤 Upload wheel artifact
109-
uses: pyTooling/upload-artifact@v6
109+
uses: pyTooling/upload-artifact@v7
110110
with:
111111
name: ${{ inputs.artifact }}
112112
working-directory: dist

.github/workflows/PublishCoverageResults.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
submodules: true
116116

117117
- name: 📥 Download Artifacts
118-
uses: pyTooling/download-artifact@v7
118+
uses: pyTooling/download-artifact@v8
119119
with:
120120
pattern: ${{ inputs.coverage_artifacts_pattern }}
121121
path: artifacts
@@ -156,7 +156,7 @@ jobs:
156156
tree -pash ${{ fromJson(inputs.coverage_report_html).directory }}
157157
158158
- name: 📤 Upload 'Coverage SQLite Database' artifact
159-
uses: pyTooling/upload-artifact@v6
159+
uses: pyTooling/upload-artifact@v7
160160
if: inputs.coverage_sqlite_artifact != ''
161161
continue-on-error: true
162162
with:
@@ -166,7 +166,7 @@ jobs:
166166
retention-days: 1
167167

168168
- name: 📤 Upload 'Coverage XML Report' artifact
169-
uses: pyTooling/upload-artifact@v6
169+
uses: pyTooling/upload-artifact@v7
170170
if: inputs.coverage_xml_artifact != ''
171171
continue-on-error: true
172172
with:
@@ -177,7 +177,7 @@ jobs:
177177
retention-days: 1
178178

179179
- name: 📤 Upload 'Coverage JSON Report' artifact
180-
uses: pyTooling/upload-artifact@v6
180+
uses: pyTooling/upload-artifact@v7
181181
if: inputs.coverage_json_artifact != ''
182182
continue-on-error: true
183183
with:
@@ -188,7 +188,7 @@ jobs:
188188
retention-days: 1
189189

190190
- name: 📤 Upload 'Coverage HTML Report' artifact
191-
uses: pyTooling/upload-artifact@v6
191+
uses: pyTooling/upload-artifact@v7
192192
if: inputs.coverage_html_artifact != ''
193193
continue-on-error: true
194194
with:

.github/workflows/PublishOnPyPI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
steps:
5858
- name: 📥 Download artifacts '${{ inputs.artifact }}' from 'Package' job
59-
uses: pyTooling/download-artifact@v7
59+
uses: pyTooling/download-artifact@v8
6060
with:
6161
name: ${{ inputs.artifact }}
6262
path: dist

.github/workflows/PublishTestResults.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
uses: actions/checkout@v6
106106

107107
- name: 📥 Download Artifacts
108-
uses: pyTooling/download-artifact@v7
108+
uses: pyTooling/download-artifact@v8
109109
with:
110110
pattern: ${{ inputs.unittest_artifacts_pattern }}
111111
path: artifacts
@@ -157,7 +157,7 @@ jobs:
157157
fail_ci_if_error: true
158158

159159
- name: 📤 Upload merged 'JUnit Test Summary' artifact
160-
uses: pyTooling/upload-artifact@v6
160+
uses: pyTooling/upload-artifact@v7
161161
if: inputs.merged_junit_artifact != ''
162162
with:
163163
name: ${{ inputs.merged_junit_artifact }}

.github/workflows/PublishToGitHubPages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,20 @@ jobs:
6464
github_pages_url: ${{ steps.deployment.outputs.page_url }}
6565
steps:
6666
- name: 📥 Download artifacts '${{ inputs.doc }}' from 'SphinxDocumentation' job
67-
uses: pyTooling/download-artifact@v7
67+
uses: pyTooling/download-artifact@v8
6868
with:
6969
name: ${{ inputs.doc }}
7070
path: public
7171

7272
- name: 📥 Download artifacts '${{ inputs.coverage }}' from 'Coverage' job
73-
uses: pyTooling/download-artifact@v7
73+
uses: pyTooling/download-artifact@v8
7474
if: ${{ inputs.coverage != '' }}
7575
with:
7676
name: ${{ inputs.coverage }}
7777
path: public/coverage
7878

7979
- name: 📥 Download artifacts '${{ inputs.typing }}' from 'StaticTypeCheck' job
80-
uses: pyTooling/download-artifact@v7
80+
uses: pyTooling/download-artifact@v8
8181
if: ${{ inputs.typing != '' }}
8282
with:
8383
name: ${{ inputs.typing }}

.github/workflows/SphinxDocumentation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,15 @@ jobs:
105105
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
106106
107107
- name: 📥 Download artifacts '${{ inputs.unittest_xml_artifact }}' from 'Unittesting' job
108-
uses: pyTooling/download-artifact@v7
108+
uses: pyTooling/download-artifact@v8
109109
if: inputs.unittest_xml_artifact != ''
110110
with:
111111
name: ${{ inputs.unittest_xml_artifact }}
112112
path: ${{ fromJson(inputs.unittest_xml).directory }}
113113
investigate: true
114114

115115
- name: 📥 Download artifacts '${{ inputs.coverage_json_artifact }}' from 'PublishCoverageResults' job
116-
uses: pyTooling/download-artifact@v7
116+
uses: pyTooling/download-artifact@v8
117117
if: inputs.coverage_json_artifact != ''
118118
with:
119119
name: ${{ inputs.coverage_json_artifact }}
@@ -129,7 +129,7 @@ jobs:
129129
sphinx-build -v -n -b html -d _build/doctrees -j $(nproc) -w _build/html.log . _build/html
130130
131131
- name: 📤 Upload 'HTML Documentation' artifact
132-
uses: pyTooling/upload-artifact@v6
132+
uses: pyTooling/upload-artifact@v7
133133
if: inputs.html_artifact != ''
134134
continue-on-error: true
135135
with:
@@ -164,15 +164,15 @@ jobs:
164164
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
165165
166166
- name: 📥 Download artifacts '${{ inputs.unittest_xml_artifact }}' from 'Unittesting' job
167-
uses: pyTooling/download-artifact@v7
167+
uses: pyTooling/download-artifact@v8
168168
if: inputs.unittest_xml_artifact != ''
169169
with:
170170
name: ${{ inputs.unittest_xml_artifact }}
171171
path: ${{ fromJson(inputs.unittest_xml).directory }}
172172
investigate: true
173173

174174
- name: 📥 Download artifacts '${{ inputs.coverage_json_artifact }}' from 'PublishCoverageResults' job
175-
uses: pyTooling/download-artifact@v7
175+
uses: pyTooling/download-artifact@v8
176176
if: inputs.coverage_json_artifact != ''
177177
with:
178178
name: ${{ inputs.coverage_json_artifact }}
@@ -272,7 +272,7 @@ jobs:
272272
done
273273
274274
- name: 📤 Upload 'LaTeX Documentation' artifact
275-
uses: pyTooling/upload-artifact@v6
275+
uses: pyTooling/upload-artifact@v7
276276
if: inputs.latex_artifact != ''
277277
continue-on-error: true
278278
with:

.github/workflows/StaticTypeCheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
fi
143143
144144
- name: 📤 Upload '${{ inputs.html_artifact }}' HTML artifact
145-
uses: pyTooling/upload-artifact@v6
145+
uses: pyTooling/upload-artifact@v7
146146
if: ${{ inputs.html_artifact != '' }}
147147
continue-on-error: true
148148
with:
@@ -153,7 +153,7 @@ jobs:
153153
retention-days: 1
154154

155155
- name: 📤 Upload '${{ inputs.junit_artifact }}' JUnit artifact
156-
uses: pyTooling/upload-artifact@v6
156+
uses: pyTooling/upload-artifact@v7
157157
if: ${{ inputs.junit_artifact != '' }}
158158
continue-on-error: true
159159
with:
@@ -164,7 +164,7 @@ jobs:
164164
retention-days: 1
165165

166166
- name: 📤 Upload '${{ inputs.cobertura_artifact }}' Cobertura artifact
167-
uses: pyTooling/upload-artifact@v6
167+
uses: pyTooling/upload-artifact@v7
168168
if: ${{ inputs.cobertura_artifact != '' }}
169169
continue-on-error: true
170170
with:

0 commit comments

Comments
 (0)