mirror of
https://github.com/actions/checkout.git
synced 2025-11-28 01:51:57 +02:00
Cleanup actions/checkout@v6 auth style (#2305)
This commit is contained in:
parent
08eba0b27e
commit
34e114876b
5 changed files with 657 additions and 2 deletions
|
|
@ -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
|
||||
}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue