Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update shellcheck version via renovate #3716

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/shellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
name: shellcheck
runs-on: ubuntu-24.04
env:
VERSION: v0.10.0
# renovate: datasource=github-releases depName=https://github.com/koalaman/shellcheck
SHELLCHECK_VERSION: v0.10.0
steps:
- uses: actions/checkout@v4
- name: shellcheck ci scripts
Expand All @@ -21,12 +22,12 @@ jobs:
with:
scandir: ".ci"
severity: warning
version: ${{ env.VERSION }}
version: ${{ env.SHELLCHECK_VERSION }}
- name: shellcheck hack scripts
uses: ludeeus/[email protected]
env:
SHELLCHECK_OPTS: -x -e SC2059 -e SC2086
with:
scandir: "hack"
severity: warning
version: ${{ env.VERSION }}
version: ${{ env.SHELLCHECK_VERSION }}
5 changes: 3 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@
},
{
"customType": "regex",
"description" : "Update tool versions in the Makefile",
"description" : "Update tool versions in the Makefile and Github Actions",
"fileMatch": [
"(^|/)Makefile$"
"(^|/)Makefile$",
"(^|/)\\.github/workflows/.+\\.ya?ml$"
],
"matchStrings": [
"# 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"
Expand Down
Loading