We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c81c2a3 commit b9042a4Copy full SHA for b9042a4
2 files changed
.github/renovate.json5
@@ -3,6 +3,7 @@
3
extends: [
4
'config:best-practices',
5
'helpers:pinGitHubActionDigestsToSemver',
6
+ 'customManagers:githubActionsVersions',
7
],
8
packageRules: [
9
{
.github/workflows/reusable-misspell-check.yml
@@ -13,8 +13,12 @@ jobs:
13
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
14
15
- name: Install misspell
16
+ env:
17
+ # renovate: datasource=github-releases depName=golangci/misspell
18
+ MISSPELL_VERSION: v0.7.0
19
run: |
- 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}
22
23
- name: Run misspell
24
run: bin/misspell -error .
0 commit comments