Skip to content

Commit 812ae6b

Browse files
committed
Fix codespell
Signed-off-by: Chris Doherty <[email protected]>
1 parent 1797e4b commit 812ae6b

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

.github/workflows/ci.yaml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,36 @@ jobs:
1414
matrix:
1515
target: ["verify", "lint", "test"]
1616
steps:
17-
- name: checkout
18-
uses: actions/checkout@v3
19-
- uses: ./.github/actions/setup-go
20-
- uses: actions/cache@v3
21-
with:
22-
path: hack/tools/bin
23-
key: ${{ runner.os }}-tools-bin-${{ matrix.target }}-${{ hashFiles('Makefile') }}
24-
restore-keys: |
25-
${{ runner.os }}-tools-bin-${{ matrix.target }}-
26-
${{ runner.os }}-tools-bin-
27-
- uses: actions/cache@v3
28-
if: ${{ matrix.target == 'test' }}
29-
with:
30-
path: /tmp/kubebuilder-tools-*.tar.gz
31-
key: ${{ runner.os }}-tmp-${{ matrix.target }}-${{ hashFiles('scripts/fetch_ext_bins.sh') }}
32-
restore-keys: |
33-
${{ runner.os }}-tmp-${{ matrix.target }}-
34-
${{ runner.os }}-tmp-
35-
- name: ${{ matrix.target }}
36-
run: make ${{ matrix.target }}
17+
- name: checkout
18+
uses: actions/checkout@v3
19+
- uses: ./.github/actions/setup-go
20+
- uses: actions/cache@v3
21+
with:
22+
path: hack/tools/bin
23+
key: ${{ runner.os }}-tools-bin-${{ matrix.target }}-${{ hashFiles('Makefile') }}
24+
restore-keys: |
25+
${{ runner.os }}-tools-bin-${{ matrix.target }}-
26+
${{ runner.os }}-tools-bin-
27+
- uses: actions/cache@v3
28+
if: ${{ matrix.target == 'test' }}
29+
with:
30+
path: /tmp/kubebuilder-tools-*.tar.gz
31+
key: ${{ runner.os }}-tmp-${{ matrix.target }}-${{ hashFiles('scripts/fetch_ext_bins.sh') }}
32+
restore-keys: |
33+
${{ runner.os }}-tmp-${{ matrix.target }}-
34+
${{ runner.os }}-tmp-
35+
- name: ${{ matrix.target }}
36+
run: make ${{ matrix.target }}
3737
codespell:
3838
name: Codespell
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Checkout Code
4242
uses: actions/checkout@v3
4343
- name: Codespell
44-
uses: codespell-project/actions-codespell@master
44+
uses: codespell-project/actions-codespell@v1.0
4545
with:
4646
check_filenames: true
4747
check_hidden: true
48-
skip: './.git,./go.mod,./go.sum'
48+
skip: "./.git,./go.mod,./go.sum"
49+
ignore_words_list: ro

0 commit comments

Comments
 (0)