0
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-11-28 01:51:57 +02:00

Cleanup actions/checkout@v6 auth style (#2301)

This commit is contained in:
eric sciple 2025-11-13 15:22:10 -06:00 committed by GitHub
parent 08c6903cd8
commit 93cb6efe18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 657 additions and 2 deletions

View file

@ -499,6 +499,18 @@ async function setup(testName: string): Promise<void> {
await fs.promises.stat(path.join(repositoryPath, '.git'))
return repositoryUrl
}),
getSubmoduleConfigPaths: jest.fn(async () => {
return []
}),
tryConfigUnsetValue: jest.fn(async () => {
return true
}),
tryGetConfigValues: jest.fn(async () => {
return []
}),
tryGetConfigKeys: jest.fn(async () => {
return []
}),
tryReset: jest.fn(async () => {
return true
}),