Skip to content

Commit b6e7636

Browse files
authored
Update shellcheck version via renoate (#3716)
1 parent d336625 commit b6e7636

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/shellcheck.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
name: shellcheck
1212
runs-on: ubuntu-24.04
1313
env:
14-
VERSION: v0.10.0
14+
# renovate: datasource=github-releases depName=https://github.com/koalaman/shellcheck
15+
SHELLCHECK_VERSION: v0.10.0
1516
steps:
1617
- uses: actions/checkout@v4
1718
- name: shellcheck ci scripts
@@ -21,12 +22,12 @@ jobs:
2122
with:
2223
scandir: ".ci"
2324
severity: warning
24-
version: ${{ env.VERSION }}
25+
version: ${{ env.SHELLCHECK_VERSION }}
2526
- name: shellcheck hack scripts
2627
uses: ludeeus/[email protected]
2728
env:
2829
SHELLCHECK_OPTS: -x -e SC2059 -e SC2086
2930
with:
3031
scandir: "hack"
3132
severity: warning
32-
version: ${{ env.VERSION }}
33+
version: ${{ env.SHELLCHECK_VERSION }}

renovate.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
},
1818
{
1919
"customType": "regex",
20-
"description" : "Update tool versions in the Makefile",
20+
"description" : "Update tool versions in the Makefile and Github Actions",
2121
"fileMatch": [
22-
"(^|/)Makefile$"
22+
"(^|/)Makefile$",
23+
"(^|/)\\.github/workflows/.+\\.ya?ml$"
2324
],
2425
"matchStrings": [
2526
"# renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?(?: registryUrl=(?<registryUrl>[^\\s]+?))\\s+[A-Za-z0-9_]+?_VERSION\\s*:*\\??=\\s*[\"']?(?<currentValue>.+?)[\"']?\\s"

0 commit comments

Comments
 (0)