Skip to content

Commit 4701d8d

Browse files
committed
fix: Fixing typo
1 parent 0694ea0 commit 4701d8d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ jobs:
3434
echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
3535
3636
if [ "$RUNNER_OS" == "Windows" ]; then
37-
echo "golanci-lint-cache=$LOCALAPPDATA/golangci-lint" >> "$GITHUB_OUTPUT"
37+
echo "golangci-lint-cache=$LOCALAPPDATA/golangci-lint" >> "$GITHUB_OUTPUT"
3838
exit 0
3939
fi
4040
4141
if [ "$RUNNER_OS" == "macOS" ]; then
42-
echo "golanci-lint-cache=$HOME/Library/Caches/golangci-lint" >> "$GITHUB_OUTPUT"
42+
echo "golangci-lint-cache=$HOME/Library/Caches/golangci-lint" >> "$GITHUB_OUTPUT"
4343
exit 0
4444
fi
4545
4646
if [ "$RUNNER_OS" == "Linux" ]; then
47-
echo "golanci-lint-cache=$HOME/.cache/golangci-lint" >> "$GITHUB_OUTPUT"
47+
echo "golangci-lint-cache=$HOME/.cache/golangci-lint" >> "$GITHUB_OUTPUT"
4848
exit 0
4949
fi
5050
@@ -63,7 +63,7 @@ jobs:
6363
- name: golangci-lint Cache
6464
uses: actions/cache@v5
6565
with:
66-
path: ${{ steps.go-cache-paths.outputs.golanci-lint-cache }}
66+
path: ${{ steps.go-cache-paths.outputs.golangci-lint-cache }}
6767
key: ${{ runner.os }}-golangci-lint-${{ hashFiles('**/go.sum') }}-linux-amd64
6868

6969
- name: Lint

0 commit comments

Comments
 (0)