(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 runs-on: windows-latest
steps: steps:
- name: Checkout Bucket - name: Checkout Bucket
uses: actions/checkout@v2 uses: actions/checkout@main
with: with:
fetch-depth: 2 fetch-depth: 2
path: 'my_bucket' path: 'my_bucket'
- name: Checkout Scoop - name: Checkout Scoop
uses: actions/checkout@v2 uses: actions/checkout@main
with: with:
repository: ScoopInstaller/Scoop repository: ScoopInstaller/Scoop
path: 'scoop_core' path: 'scoop_core'
- name: Init and Test - name: Init and Test
shell: powershell shell: powershell
run: | run: |
$env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')"
.\scoop_core\test\bin\init.ps1 .\scoop_core\test\bin\init.ps1
.\my_bucket\bin\test.ps1 .\my_bucket\bin\test.ps1
test_pwsh: test_pwsh:
@ -31,18 +31,18 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Checkout Bucket - name: Checkout Bucket
uses: actions/checkout@v2 uses: actions/checkout@main
with: with:
fetch-depth: 2 fetch-depth: 2
path: 'my_bucket' path: 'my_bucket'
- name: Checkout Scoop - name: Checkout Scoop
uses: actions/checkout@v2 uses: actions/checkout@main
with: with:
repository: ScoopInstaller/Scoop repository: ScoopInstaller/Scoop
path: 'scoop_core' path: 'scoop_core'
- name: Init and Test - name: Init and Test
shell: pwsh shell: pwsh
run: | run: |
$env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')"
.\scoop_core\test\bin\init.ps1 .\scoop_core\test\bin\init.ps1
.\my_bucket\bin\test.ps1 .\my_bucket\bin\test.ps1