mirror of
				https://github.com/actions/checkout.git
				synced 2025-11-04 05:19:14 +08:00 
			
		
		
		
	Fix typos found by codespell (#1287)
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							47fbe2df0a
						
					
				
				
					commit
					f095bcc56b
				
			@@ -181,7 +181,7 @@ GITHUB_WORKSPACE=/home/runner/work/foo/foo
 | 
				
			|||||||
RUNNER_WORKSPACE=/home/runner/work/foo
 | 
					RUNNER_WORKSPACE=/home/runner/work/foo
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
V2 introduces a new contraint on the checkout path. The location must now be under `github.workspace`. Whereas the checkout@v1 constraint was one level up, under `runner.workspace`.
 | 
					V2 introduces a new constraint on the checkout path. The location must now be under `github.workspace`. Whereas the checkout@v1 constraint was one level up, under `runner.workspace`.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
V2 no longer changes `github.workspace` to follow wherever the self repo is checked-out.
 | 
					V2 no longer changes `github.workspace` to follow wherever the self repo is checked-out.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							@@ -1039,7 +1039,7 @@ function prepareExistingDirectory(git, repositoryPath, repositoryUrl, clean, ref
 | 
				
			|||||||
                if (clean) {
 | 
					                if (clean) {
 | 
				
			||||||
                    core.startGroup('Cleaning the repository');
 | 
					                    core.startGroup('Cleaning the repository');
 | 
				
			||||||
                    if (!(yield git.tryClean())) {
 | 
					                    if (!(yield git.tryClean())) {
 | 
				
			||||||
                        core.debug(`The clean command failed. This might be caused by: 1) path too long, 2) permission issue, or 3) file in use. For futher investigation, manually run 'git clean -ffdx' on the directory '${repositoryPath}'.`);
 | 
					                        core.debug(`The clean command failed. This might be caused by: 1) path too long, 2) permission issue, or 3) file in use. For further investigation, manually run 'git clean -ffdx' on the directory '${repositoryPath}'.`);
 | 
				
			||||||
                        remove = true;
 | 
					                        remove = true;
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                    else if (!(yield git.tryReset())) {
 | 
					                    else if (!(yield git.tryReset())) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -92,7 +92,7 @@ export async function prepareExistingDirectory(
 | 
				
			|||||||
        core.startGroup('Cleaning the repository')
 | 
					        core.startGroup('Cleaning the repository')
 | 
				
			||||||
        if (!(await git.tryClean())) {
 | 
					        if (!(await git.tryClean())) {
 | 
				
			||||||
          core.debug(
 | 
					          core.debug(
 | 
				
			||||||
            `The clean command failed. This might be caused by: 1) path too long, 2) permission issue, or 3) file in use. For futher investigation, manually run 'git clean -ffdx' on the directory '${repositoryPath}'.`
 | 
					            `The clean command failed. This might be caused by: 1) path too long, 2) permission issue, or 3) file in use. For further investigation, manually run 'git clean -ffdx' on the directory '${repositoryPath}'.`
 | 
				
			||||||
          )
 | 
					          )
 | 
				
			||||||
          remove = true
 | 
					          remove = true
 | 
				
			||||||
        } else if (!(await git.tryReset())) {
 | 
					        } else if (!(await git.tryReset())) {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user