From 8893535a36447b42dea33e3f0cbd82333fa3eb3d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 07:11:12 +0000 Subject: [PATCH] ci: bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `7` | | [bjompen/UpdatePWSHAction](https://github.com/bjompen/updatepwshaction) | `1.0.1` | `1.1.0` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | Updates `actions/checkout` from 5 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v7) Updates `bjompen/UpdatePWSHAction` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/bjompen/updatepwshaction/releases) - [Commits](https://github.com/bjompen/updatepwshaction/compare/v1.0.1...v1.1.0) Updates `actions/setup-dotnet` from 5 to 6 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v5...v6) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: bjompen/UpdatePWSHAction dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-dotnet dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/code-quality.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/continuous-integration.yml | 22 ++++++++++---------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index ac71289..99475cc 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -44,7 +44,7 @@ jobs: name: Anonymization of public Doc and Samples runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Pester Test Anonymization (no live server needed) shell: pwsh run: | @@ -61,7 +61,7 @@ jobs: name: AI instruction file consistency runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Pester Test AI Instructions (no live server needed) shell: pwsh run: | diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 01e7212..4caf485 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -40,7 +40,7 @@ jobs: - language: csharp build-mode: none steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v4 with: diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 53ab387..5164183 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -42,7 +42,7 @@ jobs: steps: - name: PowerShell Update to latest stable (initially because 7.2.13/lts had issues, forcing latest stable) - uses: bjompen/UpdatePWSHAction@v1.0.1 + uses: bjompen/UpdatePWSHAction@v1.1.0 with: ReleaseVersion: 'Stable' @@ -61,10 +61,10 @@ jobs: echo "ISHGITHUB_REPOSITORY[$env:ISHGITHUB_REPOSITORY]" echo "ISHGITHUB_RUN_ID[$env:ISHGITHUB_RUN_ID]" - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Setup .NET 6.0.x - uses: actions/setup-dotnet@v5 + uses: actions/setup-dotnet@v6 with: dotnet-version: 6.0.x @@ -112,7 +112,7 @@ jobs: } - name: Archive ISHRemote module - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ISHRemote-MainCI-Module path: Source/ISHRemote/Trisoft.ISHRemote/bin/Release/ISHRemote/ @@ -133,14 +133,14 @@ jobs: steps: - name: PowerShell Update to latest stable (initially because 7.2.13/lts had issues, forcing latest stable) - uses: bjompen/UpdatePWSHAction@v1.0.1 + uses: bjompen/UpdatePWSHAction@v1.1.0 with: ReleaseVersion: 'Stable' - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Download ISHRemote module artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: ISHRemote-MainCI-Module path: Source/ISHRemote/Trisoft.ISHRemote/bin/Release/ISHRemote/ @@ -178,7 +178,7 @@ jobs: ISH_CLIENT_SECRET: ${{ secrets.ISH_CLIENT_SECRET }} run: Invoke-Pester -Path Source/ISHRemote/Trisoft.ISHRemote/Cmdlets/_TestEnvironment/TestPrerequisite.Tests.ps1 -Output Detailed -Passthru | Export-CliXml -Path Cmdlets.Pester.Tests.xml - name: Upload test results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ISHRemote-MainCI-PesterPrerequisiteOnPowerShellCore path: Cmdlets.Pester.Tests.xml @@ -193,7 +193,7 @@ jobs: ISH_CLIENT_SECRET: ${{ secrets.ISH_CLIENT_SECRET }} run: Invoke-Pester -Path @('Source/ISHRemote/Trisoft.ISHRemote/Scripts/Public/','Source/ISHRemote/Trisoft.ISHRemote/Cmdlets/') -ExcludePath @('*GetIshDocumentObj.Tests.ps1','*TestAnonymization.Tests.ps1') -Output Detailed -Passthru | Export-CliXml -Path Cmdlets.Pester.Tests.xml - name: Upload test results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ISHRemote-MainCI-PesterOnPowerShellCore path: Cmdlets.Pester.Tests.xml @@ -232,7 +232,7 @@ jobs: ISH_CLIENT_SECRET: ${{ secrets.ISH_CLIENT_SECRET }} run: Invoke-Pester -Path Source/ISHRemote/Trisoft.ISHRemote/Cmdlets/_TestEnvironment/TestPrerequisite.Tests.ps1 -Output Detailed -Passthru | Export-CliXml -Path Cmdlets.Pester.Tests.xml - name: Upload test results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ISHRemote-MainCI-PesterPrerequisiteOnWindowsPowerShell path: Cmdlets.Pester.Tests.xml @@ -247,7 +247,7 @@ jobs: ISH_CLIENT_SECRET: ${{ secrets.ISH_CLIENT_SECRET }} run: Invoke-Pester -Path @('Source/ISHRemote/Trisoft.ISHRemote/Cmdlets/') -ExcludePath @('*GetIshDocumentObj.Tests.ps1','*TestAnonymization.Tests.ps1') -Output Detailed -Passthru | Export-CliXml -Path Cmdlets.Pester.Tests.xml - name: Upload test results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ISHRemote-MainCI-PesterOnWindowsPowerShell path: Cmdlets.Pester.Tests.xml