From 961e1d1d4779f1042d3f92228bd7c7d6a26cd961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20=C5=9Awi=C4=85tek?= Date: Sat, 15 Feb 2025 16:58:37 +0100 Subject: [PATCH] Update shellcheck version via renoate --- .github/workflows/shellcheck.yaml | 7 ++++--- renovate.json | 5 +++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/shellcheck.yaml b/.github/workflows/shellcheck.yaml index f05c4dbc56..77f11d1183 100644 --- a/.github/workflows/shellcheck.yaml +++ b/.github/workflows/shellcheck.yaml @@ -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 @@ -21,7 +22,7 @@ jobs: with: scandir: ".ci" severity: warning - version: ${{ env.VERSION }} + version: ${{ env.SHELLCHECK_VERSION }} - name: shellcheck hack scripts uses: ludeeus/action-shellcheck@2.0.0 env: @@ -29,4 +30,4 @@ jobs: with: scandir: "hack" severity: warning - version: ${{ env.VERSION }} \ No newline at end of file + version: ${{ env.SHELLCHECK_VERSION }} \ No newline at end of file diff --git a/renovate.json b/renovate.json index 86da75450f..f718908265 100644 --- a/renovate.json +++ b/renovate.json @@ -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=(?[a-z-.]+?) depName=(?[^\\s]+?)(?: (?:packageName)=(?[^\\s]+?))?(?: versioning=(?[^\\s]+?))?(?: extractVersion=(?[^\\s]+?))?(?: registryUrl=(?[^\\s]+?))\\s+[A-Za-z0-9_]+?_VERSION\\s*:*\\??=\\s*[\"']?(?.+?)[\"']?\\s"