Skip to content

Commit f095bcc

Browse files
Fix typos found by codespell (#1287)
1 parent 47fbe2d commit f095bcc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

adrs/0153-checkout-v2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ GITHUB_WORKSPACE=/home/runner/work/foo/foo
181181
RUNNER_WORKSPACE=/home/runner/work/foo
182182
```
183183

184-
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`.
184+
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`.
185185

186186
V2 no longer changes `github.workspace` to follow wherever the self repo is checked-out.
187187

@@ -287,4 +287,4 @@ Note:
287287
- Update samples to consume `actions/checkout@v2`
288288
- Job containers now require git in the PATH for checkout, otherwise fallback to REST API
289289
- Minimum git version 2.18
290-
- Update problem matcher logic regarding source file verification (runner)
290+
- Update problem matcher logic regarding source file verification (runner)

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ function prepareExistingDirectory(git, repositoryPath, repositoryUrl, clean, ref
10391039
if (clean) {
10401040
core.startGroup('Cleaning the repository');
10411041
if (!(yield git.tryClean())) {
1042-
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}'.`);
1042+
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}'.`);
10431043
remove = true;
10441044
}
10451045
else if (!(yield git.tryReset())) {

src/git-directory-helper.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export async function prepareExistingDirectory(
9292
core.startGroup('Cleaning the repository')
9393
if (!(await git.tryClean())) {
9494
core.debug(
95-
`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}'.`
95+
`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}'.`
9696
)
9797
remove = true
9898
} else if (!(await git.tryReset())) {

0 commit comments

Comments
 (0)