From 3ce3442db5f08ada4831a86be383c8df36bd1dc0 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 12 Jul 2026 11:59:22 +0200 Subject: [PATCH 1/3] Adopt Process-PSModule v6.1.4 --- .github/workflows/Process-PSModule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Process-PSModule.yml b/.github/workflows/Process-PSModule.yml index 93c1ddd..a8e37ad 100644 --- a/.github/workflows/Process-PSModule.yml +++ b/.github/workflows/Process-PSModule.yml @@ -27,5 +27,5 @@ permissions: jobs: Process-PSModule: - uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@ce64918acc96dda73eb78f827036b794bfa6fa1a # v5.5.7 + uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@da180bac16b13bfbcdf08b2e4e221b5b49e5ff28 # v6.1.4 secrets: inherit From 51e72a920823cf2716005ae14dd3df11b1eca6bc Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 12 Jul 2026 11:59:25 +0200 Subject: [PATCH 2/3] Require Pester 6.x in tests/PSCustomObject.Tests.ps1 --- tests/PSCustomObject.Tests.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/PSCustomObject.Tests.ps1 b/tests/PSCustomObject.Tests.ps1 index 946d571..dceb1d6 100644 --- a/tests/PSCustomObject.Tests.ps1 +++ b/tests/PSCustomObject.Tests.ps1 @@ -1,3 +1,5 @@ +#Requires -Modules @{ ModuleName = 'Pester'; ModuleVersion = '6.0.0'; MaximumVersion = '6.*' } + [Diagnostics.CodeAnalysis.SuppressMessageAttribute( 'PSUseDeclaredVarsMoreThanAssignments', '', Justification = 'Pester grouping syntax: known issue.' From aaabfa8a2dc7eaf6444a44d4cf818524fa7a5d55 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 12 Jul 2026 12:23:42 +0200 Subject: [PATCH 3/3] Strip stray BOM/zero-width bytes from tests/PSCustomObject.Tests.ps1 --- tests/PSCustomObject.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PSCustomObject.Tests.ps1 b/tests/PSCustomObject.Tests.ps1 index dceb1d6..c4f38ea 100644 --- a/tests/PSCustomObject.Tests.ps1 +++ b/tests/PSCustomObject.Tests.ps1 @@ -1,6 +1,6 @@ #Requires -Modules @{ ModuleName = 'Pester'; ModuleVersion = '6.0.0'; MaximumVersion = '6.*' } -[Diagnostics.CodeAnalysis.SuppressMessageAttribute( +[Diagnostics.CodeAnalysis.SuppressMessageAttribute( 'PSUseDeclaredVarsMoreThanAssignments', '', Justification = 'Pester grouping syntax: known issue.' )]