From 36a56c7ddffe94372fc0299f56d244ae98db3c7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 11:24:45 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 4 to 5 in /.github/workflows Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 120 +++++++++++++++++++-------------------- 1 file changed, 60 insertions(+), 60 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ae0b5c..bd895bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,60 +1,60 @@ -name: Tests - -on: - pull_request: - push: - branches: - - "main" - workflow_dispatch: - -jobs: - test_powershell: - name: WindowsPowerShell - runs-on: windows-latest - steps: - - name: Checkout Bucket - uses: actions/checkout@v4 - with: - fetch-depth: 2 - path: "my_bucket" - - name: Checkout Scoop - uses: actions/checkout@v4 - with: - repository: ScoopInstaller/Scoop - ref: develop - path: "scoop_core" - - name: Init Test Suite - uses: potatoqualitee/psmodulecache@v6.2.1 - with: - modules-to-cache: PSScriptAnalyzer, BuildHelpers, Pester:5.7.1 - shell: powershell - - name: Test - shell: powershell - run: | - $env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" - .\my_bucket\bin\test.ps1 - test_pwsh: - name: PowerShell - runs-on: windows-latest - steps: - - name: Checkout Bucket - uses: actions/checkout@v4 - with: - fetch-depth: 2 - path: "my_bucket" - - name: Checkout Scoop - uses: actions/checkout@v4 - with: - repository: ScoopInstaller/Scoop - ref: develop - path: "scoop_core" - - name: Init Test Suite - uses: potatoqualitee/psmodulecache@v6.2.1 - with: - modules-to-cache: PSScriptAnalyzer, BuildHelpers, Pester:5.7.1 - shell: pwsh - - name: Test - shell: pwsh - run: | - $env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" - .\my_bucket\bin\test.ps1 +name: Tests + +on: + pull_request: + push: + branches: + - "main" + workflow_dispatch: + +jobs: + test_powershell: + name: WindowsPowerShell + runs-on: windows-latest + steps: + - name: Checkout Bucket + uses: actions/checkout@v5 + with: + fetch-depth: 2 + path: "my_bucket" + - name: Checkout Scoop + uses: actions/checkout@v5 + with: + repository: ScoopInstaller/Scoop + ref: develop + path: "scoop_core" + - name: Init Test Suite + uses: potatoqualitee/psmodulecache@v6.2.1 + with: + modules-to-cache: PSScriptAnalyzer, BuildHelpers, Pester:5.7.1 + shell: powershell + - name: Test + shell: powershell + run: | + $env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" + .\my_bucket\bin\test.ps1 + test_pwsh: + name: PowerShell + runs-on: windows-latest + steps: + - name: Checkout Bucket + uses: actions/checkout@v5 + with: + fetch-depth: 2 + path: "my_bucket" + - name: Checkout Scoop + uses: actions/checkout@v5 + with: + repository: ScoopInstaller/Scoop + ref: develop + path: "scoop_core" + - name: Init Test Suite + uses: potatoqualitee/psmodulecache@v6.2.1 + with: + modules-to-cache: PSScriptAnalyzer, BuildHelpers, Pester:5.7.1 + shell: pwsh + - name: Test + shell: pwsh + run: | + $env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" + .\my_bucket\bin\test.ps1