(chore): CI: Change actions/checkout version (#6)

This commit is contained in:
Mathias Hermansson 2022-10-13 13:30:16 +02:00 committed by GitHub
parent 38e65c144b
commit be81fafb82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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