Skip to content

Commit b9042a4

Browse files
authored
Pin misspell (#349)
1 parent c81c2a3 commit b9042a4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/renovate.json5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
extends: [
44
'config:best-practices',
55
'helpers:pinGitHubActionDigestsToSemver',
6+
'customManagers:githubActionsVersions',
67
],
78
packageRules: [
89
{

.github/workflows/reusable-misspell-check.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,12 @@ jobs:
1313
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1414

1515
- name: Install misspell
16+
env:
17+
# renovate: datasource=github-releases depName=golangci/misspell
18+
MISSPELL_VERSION: v0.7.0
1619
run: |
17-
curl -sfL https://raw.githubusercontent.com/golangci/misspell/master/install-misspell.sh | sh -s -- -b bin
20+
curl -sfL https://raw.githubusercontent.com/golangci/misspell/${MISSPELL_VERSION}/install-misspell.sh \
21+
| sh -s -- -b bin ${MISSPELL_VERSION}
1822
1923
- name: Run misspell
2024
run: bin/misspell -error .

0 commit comments

Comments
 (0)