Skip to content

Commit f89819a

Browse files
committed
20230428A
1 parent 6a419d7 commit f89819a

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ body:
1818
description: "What versions are affected? Versions must be listed as supported in the Security Policy (file: `SECURITY.md`)."
1919
multiple: true
2020
options:
21+
- "v1.5.0"
2122
- "v1.4.1"
2223
- "v1.4.0"
2324
validations:

hugoalh.GitHubActionsToolkit/hugoalh.GitHubActionsToolkit.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
RootModule = 'hugoalh.GitHubActionsToolkit.psm1'
44

55
# Version number of this module.
6-
ModuleVersion = '1.4.1'
6+
ModuleVersion = '1.5.0'
77

88
# Supported PSEditions
99
# CompatiblePSEditions = @()

hugoalh.GitHubActionsToolkit/module/log.psm1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,12 +220,12 @@ Function Write-Fail {
220220
[Alias('ColEnd', 'ColumnEnd', 'EndCol')][UInt32]$EndColumn,
221221
[ValidatePattern('^.*$', ErrorMessage = 'Parameter `Title` must be in single line string!')][Alias('Header')][String]$Title,
222222
[ScriptBlock]$Finally = {},
223-
[ValidateRange(1, [Int32]::MaxValue)][Int32]$ExitCode = 1
223+
[ValidateRange(1, [Byte]::MaxValue)][Byte]$ExitCode = 1
224224
)
225225
Write-Annotation -Type 'Error' -Message $Message -File $File -Line $Line -Column $Column -EndLine $EndLine -EndColumn $EndColumn -Title $Title
226-
Invoke-Command -ScriptBlock $Finally
226+
Invoke-Command -ScriptBlock $Finally -ErrorAction 'Continue'
227227
Exit $ExitCode
228-
Exit 1# For safety.
228+
Exit 1# Fallback for safety.
229229
}
230230
<#
231231
.SYNOPSIS

hugoalh.GitHubActionsToolkit/module/nodejs-wrapper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hugoalh/ghactions-toolkit-powershell-nodejs-wrapper",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"description": "A PowerShell module to provide a better and easier way for GitHub Actions to communicate with the runner machine, and the toolkit for developing GitHub Actions in PowerShell.",
55
"keywords": [
66
"gh-actions",

nodejs-wrapper-source/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hugoalh/ghactions-toolkit-powershell-nodejs-wrapper",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"description": "A PowerShell module to provide a better and easier way for GitHub Actions to communicate with the runner machine, and the toolkit for developing GitHub Actions in PowerShell.",
55
"keywords": [
66
"gh-actions",
@@ -34,7 +34,7 @@
3434
"@actions/tool-cache": "^2.0.1"
3535
},
3636
"devDependencies": {
37-
"@types/node": "^18.16.1",
37+
"@types/node": "^18.16.2",
3838
"@vercel/ncc": "^0.36.1",
3939
"typescript": "^5.0.4"
4040
},

nodejs-wrapper-source/pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)