Skip to content

Commit e85aa6a

Browse files
authored
Merge pull request #220 from pyTooling/dev
v7.10.0
2 parents fdcb8e6 + ea0f346 commit e85aa6a

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/PublishToGitHubPages.yml

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

100100
- name: 📑 Upload static files as artifact
101101
if: github.event_name != 'pull_request'
102-
uses: actions/upload-pages-artifact@v4
102+
uses: actions/upload-pages-artifact@v5
103103
with:
104104
name: ${{ inputs.pages }}
105105
path: public/

.github/workflows/TagReleaseCommit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
steps:
6060
- name: 🏷 Create release tag '${{ steps.FindPullRequest.outputs.version }}'
61-
uses: actions/github-script@v8
61+
uses: actions/github-script@v9
6262
id: createReleaseTag
6363
# if: inputs.auto_tag == 'true'
6464
with:
@@ -71,7 +71,7 @@ jobs:
7171
})
7272
7373
- name: Trigger Workflow
74-
uses: actions/github-script@v8
74+
uses: actions/github-script@v9
7575
id: runReleaseTag
7676
# if: inputs.auto_tag == 'true'
7777
with:

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.9.0"
39+
__version__ = "7.10.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.9.0"
39+
__version__ = "7.10.0"
4040
__keywords__ = ["GitHub Actions"]
4141
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
4242

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.9.0"
42+
$PackageVersion = "7.10.0"
4343
$PythonVersion = "3.14"
4444
$LaTeXDocument = "${ProjectName}.tex"
4545

0 commit comments

Comments
 (0)