Skip to content

Commit fbf1108

Browse files
committed
Bumped versions of upload-artifact to @v5 and download-artifact to @v6.
1 parent a78656a commit fbf1108

15 files changed

Lines changed: 38 additions & 38 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@v5
9090

9191
- name: 📥 Download artifacts '${{ inputs.wheel }}' from 'Package' job
92-
uses: pyTooling/download-artifact@v5
92+
uses: pyTooling/download-artifact@v6
9393
with:
9494
name: ${{ inputs.wheel }}
9595
path: install
@@ -262,7 +262,7 @@ jobs:
262262
263263
- name: 📤 Upload 'TestReportSummary.xml' artifact
264264
if: inputs.apptest_xml_artifact != ''
265-
uses: pyTooling/upload-artifact@v4
265+
uses: pyTooling/upload-artifact@v5
266266
with:
267267
name: ${{ inputs.apptest_xml_artifact }}-${{ matrix.system }}-${{ matrix.runtime }}-${{ matrix.python }}
268268
working-directory: report/unit

.github/workflows/BuildTheDocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
skip-deploy: true
5050

5151
- name: 📤 Upload 'documentation' artifacts
52-
uses: pyTooling/upload-artifact@v4
52+
uses: pyTooling/upload-artifact@v5
5353
if: inputs.artifact != ''
5454
with:
5555
name: ${{ inputs.artifact }}

.github/workflows/CoverageCollection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
164164
- name: 📤 Upload 'Coverage Report' artifact
165165
continue-on-error: true
166-
uses: pyTooling/upload-artifact@v4
166+
uses: pyTooling/upload-artifact@v5
167167
with:
168168
name: ${{ inputs.artifact }}
169169
working-directory: ${{ steps.getVariables.outputs.coverage_report_html_directory }}

.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@v5
56+
uses: pyTooling/download-artifact@v6
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
@@ -60,7 +60,7 @@ jobs:
6060
continue-on-error: ${{ inputs.can-fail == 'true' }}
6161
steps:
6262
- name: 📥 Download artifacts '${{ inputs.latex_artifact }}' from 'SphinxDocumentation' job
63-
uses: pyTooling/download-artifact@v5
63+
uses: pyTooling/download-artifact@v6
6464
with:
6565
name: ${{ inputs.latex_artifact }}
6666
path: latex
@@ -83,7 +83,7 @@ jobs:
8383
latexmk -${{ inputs.processor }} "${{ inputs.document }}.tex"
8484
8585
- name: 📤 Upload 'PDF Documentation' artifact
86-
uses: pyTooling/upload-artifact@v4
86+
uses: pyTooling/upload-artifact@v5
8787
if: inputs.pdf_artifact != ''
8888
with:
8989
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@v4
109+
uses: pyTooling/upload-artifact@v5
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@v5
118+
uses: pyTooling/download-artifact@v6
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@v4
159+
uses: pyTooling/upload-artifact@v5
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@v4
169+
uses: pyTooling/upload-artifact@v5
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@v4
180+
uses: pyTooling/upload-artifact@v5
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@v4
191+
uses: pyTooling/upload-artifact@v5
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@v5
59+
uses: pyTooling/download-artifact@v6
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@v5
106106

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

158158
- name: 📤 Upload merged 'JUnit Test Summary' artifact
159-
uses: pyTooling/upload-artifact@v4
159+
uses: pyTooling/upload-artifact@v5
160160
if: inputs.merged_junit_artifact != ''
161161
with:
162162
name: ${{ inputs.merged_junit_artifact }}

.github/workflows/PublishToGitHubPages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,20 @@ jobs:
5656
uses: actions/checkout@v5
5757

5858
- name: 📥 Download artifacts '${{ inputs.doc }}' from 'SphinxDocumentation' job
59-
uses: pyTooling/download-artifact@v5
59+
uses: pyTooling/download-artifact@v6
6060
with:
6161
name: ${{ inputs.doc }}
6262
path: public
6363

6464
- name: 📥 Download artifacts '${{ inputs.coverage }}' from 'Coverage' job
65-
uses: pyTooling/download-artifact@v5
65+
uses: pyTooling/download-artifact@v6
6666
if: ${{ inputs.coverage != '' }}
6767
with:
6868
name: ${{ inputs.coverage }}
6969
path: public/coverage
7070

7171
- name: 📥 Download artifacts '${{ inputs.typing }}' from 'StaticTypeCheck' job
72-
uses: pyTooling/download-artifact@v5
72+
uses: pyTooling/download-artifact@v6
7373
if: ${{ inputs.typing != '' }}
7474
with:
7575
name: ${{ inputs.typing }}

0 commit comments

Comments
 (0)