Skip to content

Commit dd284f3

Browse files
authored
Updating r7 from v7.9.0
2 parents 9d64ed5 + fdcb8e6 commit dd284f3

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/PublishCoverageResults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ jobs:
199199
retention-days: 1
200200

201201
- name: 📊 Publish code coverage at CodeCov
202-
uses: codecov/codecov-action@v5
202+
uses: codecov/codecov-action@v6
203203
id: codecov
204204
if: inputs.codecov == 'true'
205205
continue-on-error: true

.github/workflows/PublishTestResults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
reporter: java-junit
145145

146146
- name: 📊 Publish unittest results at CodeCov
147-
uses: codecov/codecov-action@v5
147+
uses: codecov/codecov-action@v6
148148
id: codecov
149149
if: inputs.codecov == 'true'
150150
continue-on-error: true

.github/workflows/PublishToGitHubPages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
- name: 📖 Deploy to GitHub Pages
108108
id: deployment
109109
if: github.event_name != 'pull_request'
110-
uses: actions/deploy-pages@v4
110+
uses: actions/deploy-pages@v5
111111
with:
112112
artifact_name: ${{ inputs.pages }}
113113

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Example Pipelines
164164
.. code-block:: toml
165165
166166
[build-system]
167-
requires = ["setuptools >= 80.0", "pyTooling ~= 8.12"]
167+
requires = ["setuptools >= 80.0", "pyTooling ~= 8.14"]
168168
build-backend = "setuptools.build_meta"
169169
170170
[tool.mypy]

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r ../requirements.txt
22

3-
pyTooling ~= 8.12
3+
pyTooling ~= 8.14
44

55
# Enforce latest version on ReadTheDocs
66
sphinx ~= 9.1

myFramework/Extension/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
__email__ = "Paebbels@gmail.com"
3737
__copyright__ = "2017-2026, Patrick Lehmann"
3838
__license__ = "Apache License, Version 2.0"
39-
__version__ = "7.8.0"
39+
__version__ = "7.9.0"
4040
__keywords__ = ["GitHub Actions"]
4141
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
4242

myPackage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
__email__ = "Paebbels@gmail.com"
3737
__copyright__ = "2017-2026, Patrick Lehmann"
3838
__license__ = "Apache License, Version 2.0"
39-
__version__ = "7.8.0"
39+
__version__ = "7.9.0"
4040
__keywords__ = ["GitHub Actions"]
4141
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
4242

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"setuptools >= 80.0",
4-
"pyTooling ~= 8.12"
4+
"pyTooling ~= 8.14"
55
]
66
build-backend = "setuptools.build_meta"
77

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pyTooling ~= 8.12
1+
pyTooling ~= 8.14

run.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Param(
3939

4040
$ProjectName = "Actions"
4141
$PackageName = "myPackage"
42-
$PackageVersion = "7.8.0"
42+
$PackageVersion = "7.9.0"
4343
$PythonVersion = "3.14"
4444
$LaTeXDocument = "${ProjectName}.tex"
4545

0 commit comments

Comments
 (0)