Skip to content

Commit b49cd82

Browse files
authored
v7.0.0
2 parents c2282e4 + 69f7689 commit b49cd82

39 files changed

Lines changed: 437 additions & 825 deletions

.github/workflows/ApplicationTesting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ jobs:
8686

8787
steps:
8888
- name: ⏬ Checkout repository
89-
uses: actions/checkout@v5
89+
uses: actions/checkout@v6
9090

9191
- name: 📥 Download artifacts '${{ inputs.wheel }}' from 'Package' job
92-
uses: pyTooling/download-artifact@v6
92+
uses: pyTooling/download-artifact@v7
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@v5
265+
uses: pyTooling/upload-artifact@v6
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ jobs:
4141
run: printf "::warning title=%s::%s\n" "Deprecated" "'BuildTheDocs.yml' template is deprecated. Please switch to 'SphinxDocumentation.yml'. See https://pytooling.github.io/Actions/JobTemplate/Documentation/SphinxDocumentation.html"
4242

4343
- name: ⏬ Checkout repository
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545

4646
- name: 🛳️ Build documentation
4747
uses: buildthedocs/btd@v0
4848
with:
4949
skip-deploy: true
5050

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

.github/workflows/CheckCodeQuality.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
steps:
7373
- name: ⏬ Checkout repository
74-
uses: actions/checkout@v5
74+
uses: actions/checkout@v6
7575
with:
7676
lfs: true
7777
submodules: true
@@ -140,7 +140,7 @@ jobs:
140140

141141
steps:
142142
- name: ⏬ Checkout repository
143-
uses: actions/checkout@v5
143+
uses: actions/checkout@v6
144144
with:
145145
lfs: true
146146
submodules: true
@@ -180,7 +180,7 @@ jobs:
180180

181181
steps:
182182
- name: ⏬ Checkout repository
183-
uses: actions/checkout@v5
183+
uses: actions/checkout@v6
184184
with:
185185
lfs: true
186186
submodules: true

.github/workflows/CheckDocumentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
5151
steps:
5252
- name: ⏬ Checkout repository
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v6
5454

5555
- name: 🐍 Setup Python ${{ inputs.python_version }}
5656
uses: actions/setup-python@v6

.github/workflows/CompletePipeline.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
code_version: ${{ steps.extract.outputs.code_version }}
189189
steps:
190190
- name: ⏬ Checkout repository
191-
uses: actions/checkout@v5
191+
uses: actions/checkout@v6
192192
with:
193193
# The command 'git describe' (used for version) needs the history.
194194
fetch-depth: 0
@@ -237,8 +237,6 @@ jobs:
237237
with:
238238
jobs: ${{ needs.UnitTestingParams.outputs.python_jobs }}
239239
# TODO: shouldn't this be configured by a parameter? Same as directories
240-
requirements: "-r tests/unit/requirements.txt"
241-
# pacboy: "msys/git python-lxml:p"
242240
unittest_report_xml: ${{ needs.ConfigParams.outputs.unittest_report_xml }}
243241
coverage_report_xml: ${{ needs.ConfigParams.outputs.coverage_report_xml }}
244242
coverage_report_json: ${{ needs.ConfigParams.outputs.coverage_report_json }}

.github/workflows/CoverageCollection.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
run: printf "::warning title=%s::%s\n" "Deprecated" "'CoverageCollection.yml' template is deprecated. Please switch to 'PublishReleaseNotes.yml'. See https://pytooling.github.io/Actions/JobTemplate/Testing/UnitTesting.html"
7676

7777
- name: ⏬ Checkout repository
78-
uses: actions/checkout@v5
78+
uses: actions/checkout@v6
7979
with:
8080
lfs: true
8181
submodules: true
@@ -163,7 +163,7 @@ jobs:
163163
164164
- name: 📤 Upload 'Coverage Report' artifact
165165
continue-on-error: true
166-
uses: pyTooling/upload-artifact@v5
166+
uses: pyTooling/upload-artifact@v6
167167
with:
168168
name: ${{ inputs.artifact }}
169169
working-directory: ${{ steps.getVariables.outputs.coverage_report_html_directory }}

.github/workflows/ExtractConfiguration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ on:
6868

6969
jobs:
7070
Extract:
71-
name: 📓 Extract configurations from pyproject.toml
71+
name: 🔬 Extract configurations from pyproject.toml
7272
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
7373
outputs:
7474
unittest_report_xml: ${{ steps.getVariables.outputs.unittest_report_xml }}
@@ -82,7 +82,7 @@ jobs:
8282

8383
steps:
8484
- name: ⏬ Checkout repository
85-
uses: actions/checkout@v5
85+
uses: actions/checkout@v6
8686

8787
- name: 🐍 Setup Python ${{ inputs.python_version }}
8888
uses: actions/setup-python@v6

.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@v6
56+
uses: pyTooling/download-artifact@v7
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@v6
63+
uses: pyTooling/download-artifact@v7
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@v5
86+
uses: pyTooling/upload-artifact@v6
8787
if: inputs.pdf_artifact != ''
8888
with:
8989
name: ${{ inputs.pdf_artifact }}

.github/workflows/NightlyRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
run: printf "::warning title=%s::%s\n" "NightlyRelease" "'NightlyRelease.yml' template is deprecated. Please switch to 'PublishReleaseNotes.yml'. See https://pytooling.github.io/Actions/JobTemplate/Release/PublishReleaseNotes.html"
105105

106106
- name: ⏬ Checkout repository
107-
uses: actions/checkout@v5
107+
uses: actions/checkout@v6
108108
with:
109109
# The command 'git describe' (used for version) needs the history.
110110
fetch-depth: 0

0 commit comments

Comments
 (0)