Skip to content

Commit aadec89

Browse files
dschojww3
andauthored
Explicitly disable sparse checkout unless asked for (#1598)
When a worktree is reused by actions/checkout and the first time sparse checkout was enabled, we need to ensure that the second time it is only a sparse checkout if explicitly asked for. Otherwise, we need to disable the sparse checkout so that a full checkout is the outcome of this Action. ## Details * If no `sparse-checkout` parameter is specified, disable it This should allow users to reuse existing folders when running `actions/checkout` where a previous run asked for a sparse checkout but the current run does not ask for a sparse checkout. This fixes #1475 There are use cases in particular with non-ephemeral (self-hosted) runners where an existing worktree (that has been initialized as a sparse checkout) is reused in subsequent CI runs (where `actions/checkout` is run _without_ any `sparse-checkout` parameter). In these scenarios, we need to make sure that the sparse checkout is disabled before checking out the files. ### Also includes: * npm run build * ci: verify that an existing sparse checkout can be made unsparse * Added a clarifying comment about test branches. * `test-proxy` now uses newly-minted `test-ubuntu-git` container image from ghcr.io --------- Signed-off-by: Johannes Schindelin <[email protected]> Co-authored-by: John Wesley Walker III <[email protected]>
1 parent df0bcdd commit aadec89

File tree

6 files changed

+36
-4
lines changed

6 files changed

+36
-4
lines changed

.github/workflows/test.yml

+17-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
- main
88
- releases/*
99

10+
11+
# Note that when you see patterns like "ref: test-data/v2/basic" within this workflow,
12+
# these refer to "test-data" branches on this actions/checkout repo.
13+
# (For example, test-data/v2/basic -> https://github.com/actions/checkout/tree/test-data/v2/basic)
14+
1015
jobs:
1116
build:
1217
runs-on: ubuntu-latest
@@ -95,6 +100,16 @@ jobs:
95100
- name: Verify sparse checkout
96101
run: __test__/verify-sparse-checkout.sh
97102

103+
# Disabled sparse checkout in existing checkout
104+
- name: Disabled sparse checkout
105+
uses: ./
106+
with:
107+
path: sparse-checkout
108+
109+
- name: Verify disabled sparse checkout
110+
shell: bash
111+
run: set -x && ls -l sparse-checkout/src/git-command-manager.ts
112+
98113
# Sparse checkout (non-cone mode)
99114
- name: Sparse checkout (non-cone mode)
100115
uses: ./
@@ -175,7 +190,7 @@ jobs:
175190
test-proxy:
176191
runs-on: ubuntu-latest
177192
container:
178-
image: alpine/git:latest
193+
image: ghcr.io/actions/test-ubuntu-git:main.20240221.114913.703z
179194
options: --dns 127.0.0.1
180195
services:
181196
squid-proxy:
@@ -279,4 +294,4 @@ jobs:
279294
- name: Fix Checkout v3
280295
uses: actions/checkout@v3
281296
with:
282-
path: v3
297+
path: v3

__test__/git-auth-helper.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,7 @@ async function setup(testName: string): Promise<void> {
727727
branchDelete: jest.fn(),
728728
branchExists: jest.fn(),
729729
branchList: jest.fn(),
730+
disableSparseCheckout: jest.fn(),
730731
sparseCheckout: jest.fn(),
731732
sparseCheckoutNonConeMode: jest.fn(),
732733
checkout: jest.fn(),

__test__/git-directory-helper.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,7 @@ async function setup(testName: string): Promise<void> {
462462
branchList: jest.fn(async () => {
463463
return []
464464
}),
465+
disableSparseCheckout: jest.fn(),
465466
sparseCheckout: jest.fn(),
466467
sparseCheckoutNonConeMode: jest.fn(),
467468
checkout: jest.fn(),

dist/index.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,11 @@ class GitCommandManager {
576576
return result;
577577
});
578578
}
579+
disableSparseCheckout() {
580+
return __awaiter(this, void 0, void 0, function* () {
581+
yield this.execGit(['sparse-checkout', 'disable']);
582+
});
583+
}
579584
sparseCheckout(sparseCheckout) {
580585
return __awaiter(this, void 0, void 0, function* () {
581586
yield this.execGit(['sparse-checkout', 'set', ...sparseCheckout]);
@@ -1282,7 +1287,10 @@ function getSource(settings) {
12821287
core.endGroup();
12831288
}
12841289
// Sparse checkout
1285-
if (settings.sparseCheckout) {
1290+
if (!settings.sparseCheckout) {
1291+
yield git.disableSparseCheckout();
1292+
}
1293+
else {
12861294
core.startGroup('Setting up sparse checkout');
12871295
if (settings.sparseCheckoutConeMode) {
12881296
yield git.sparseCheckout(settings.sparseCheckout);

src/git-command-manager.ts

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export interface IGitCommandManager {
1717
branchDelete(remote: boolean, branch: string): Promise<void>
1818
branchExists(remote: boolean, pattern: string): Promise<boolean>
1919
branchList(remote: boolean): Promise<string[]>
20+
disableSparseCheckout(): Promise<void>
2021
sparseCheckout(sparseCheckout: string[]): Promise<void>
2122
sparseCheckoutNonConeMode(sparseCheckout: string[]): Promise<void>
2223
checkout(ref: string, startPoint: string): Promise<void>
@@ -171,6 +172,10 @@ class GitCommandManager {
171172
return result
172173
}
173174

175+
async disableSparseCheckout(): Promise<void> {
176+
await this.execGit(['sparse-checkout', 'disable'])
177+
}
178+
174179
async sparseCheckout(sparseCheckout: string[]): Promise<void> {
175180
await this.execGit(['sparse-checkout', 'set', ...sparseCheckout])
176181
}

src/git-source-provider.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,9 @@ export async function getSource(settings: IGitSourceSettings): Promise<void> {
208208
}
209209

210210
// Sparse checkout
211-
if (settings.sparseCheckout) {
211+
if (!settings.sparseCheckout) {
212+
await git.disableSparseCheckout()
213+
} else {
212214
core.startGroup('Setting up sparse checkout')
213215
if (settings.sparseCheckoutConeMode) {
214216
await git.sparseCheckout(settings.sparseCheckout)

0 commit comments

Comments
 (0)