From be81fafb828418882279bd4b011e263a0a3eba63 Mon Sep 17 00:00:00 2001 From: Mathias Hermansson Date: Thu, 13 Oct 2022 13:30:16 +0200 Subject: [PATCH] (chore): CI: Change actions/checkout version (#6) --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f31872f..c120364 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,19 +11,19 @@ jobs: runs-on: windows-latest steps: - name: Checkout Bucket - uses: actions/checkout@v2 + uses: actions/checkout@main with: fetch-depth: 2 path: 'my_bucket' - name: Checkout Scoop - uses: actions/checkout@v2 + uses: actions/checkout@main with: repository: ScoopInstaller/Scoop path: 'scoop_core' - name: Init and Test shell: powershell run: | - $env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" + $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" .\scoop_core\test\bin\init.ps1 .\my_bucket\bin\test.ps1 test_pwsh: @@ -31,18 +31,18 @@ jobs: runs-on: windows-latest steps: - name: Checkout Bucket - uses: actions/checkout@v2 + uses: actions/checkout@main with: fetch-depth: 2 path: 'my_bucket' - name: Checkout Scoop - uses: actions/checkout@v2 + uses: actions/checkout@main with: repository: ScoopInstaller/Scoop path: 'scoop_core' - name: Init and Test shell: pwsh run: | - $env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" + $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" .\scoop_core\test\bin\init.ps1 .\my_bucket\bin\test.ps1