Skip to content

Commit 027eb92

Browse files
committed
Derp, can't use local checkout action
Of course, if I've not checked the repo out yet then how can I possibly use a customised checkout action? Chicken/egg.
1 parent 648355b commit 027eb92

6 files changed

Lines changed: 30 additions & 21 deletions

File tree

.github/actions/standard-checkout.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/crossBrowserTesting.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@ jobs:
8181
BSparallelism: 5
8282

8383
steps:
84-
- uses: ./.github/actions/standard-checkout
84+
- name: Checkout
85+
uses: actions/checkout@v6
86+
with:
87+
fetch-depth: 0
88+
lfs: true
8589
- uses: ./.github/actions/setup-build-dependencies
8690
- uses: ./.github/actions/restore-dependencies
8791

.github/workflows/dotnetCi.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
WebDriverFactory__SelectedConfiguration: CiHeadlessChrome
2222

2323
steps:
24-
- uses: ./.github/actions/standard-checkout
24+
- name: Checkout
25+
uses: actions/checkout@v6
26+
with:
27+
fetch-depth: 0
28+
lfs: true
2529
- uses: ./.github/actions/setup-build-dependencies
2630
- uses: ./.github/actions/setup-test-dependencies
2731
- uses: ./.github/actions/restore-dependencies

.github/workflows/publishDocsWebsite.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ jobs:
1414
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1515

1616
steps:
17-
- uses: ./.github/actions/standard-checkout
17+
- name: Checkout
18+
uses: actions/checkout@v6
19+
with:
20+
fetch-depth: 0
21+
lfs: true
1822
- uses: ./.github/actions/setup-build-dependencies
1923
- uses: ./.github/actions/restore-dependencies
2024
- name: Remove old docs

.github/workflows/releaseBuild.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ jobs:
2020
GithubNugetUsername: craigfowler
2121

2222
steps:
23-
- uses: ./.github/actions/standard-checkout
23+
- name: Checkout
24+
uses: actions/checkout@v6
25+
with:
26+
fetch-depth: 0
27+
lfs: true
2428
- uses: ./.github/actions/setup-build-dependencies
2529
- uses: ./.github/actions/restore-dependencies
2630
- name: Build CI version
@@ -57,7 +61,11 @@ jobs:
5761
if: ${{ github.event.workflow_run.conclusion == 'success' }}
5862

5963
steps:
60-
- uses: ./.github/actions/standard-checkout
64+
- name: Checkout
65+
uses: actions/checkout@v6
66+
with:
67+
fetch-depth: 0
68+
lfs: true
6169
- uses: ./.github/actions/setup-build-dependencies
6270
- uses: ./.github/actions/restore-dependencies
6371
- name: Remove old docs

.github/workflows/supportVerification.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ jobs:
2525
reqnroll_version: ['2.0.0', '2.*', '3.0.0', '3.*', '*']
2626

2727
steps:
28-
- uses: ./.github/actions/standard-checkout
28+
- name: Checkout
29+
uses: actions/checkout@v6
30+
with:
31+
fetch-depth: 0
32+
lfs: true
2933
- uses: ./.github/actions/setup-build-dependencies
3034
- uses: ./.github/actions/restore-dependencies
3135
- name: Test Reqnroll (only)

0 commit comments

Comments
 (0)