From 7f350c50dd50bb86d74bd3b53d7f86f660a73803 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Thu, 10 Aug 2023 09:26:15 +0900 Subject: [PATCH] Avoid failing by latest with node-build problems https://github.com/nodenv/node-build/issues/738 https://github.com/nodenv/node-build/pull/823 is not yet merged https://github.com/kachick/renovate-config-asdf/pull/1076 will be passed since this commit --- .github/workflows/ci-tool-versions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-tool-versions.yml b/.github/workflows/ci-tool-versions.yml index ddf4c243..012b73a3 100644 --- a/.github/workflows/ci-tool-versions.yml +++ b/.github/workflows/ci-tool-versions.yml @@ -20,7 +20,7 @@ jobs: run: | targets="$(mktemp)" git diff origin/${{ github.base_ref }} HEAD --word-diff --relative ./examples/.tool-versions | \ - grep -F ']{+' | grep -vP 'haskell|php' | ruby -e 'puts STDIN.each_line.map { |l| /\A(\S+\s+).*?\{\+([^\+]+)/.match(l).captures.join }.join("\n")' > "$targets" + grep -F ']{+' | grep -vP 'haskell|php|node' | ruby -e 'puts STDIN.each_line.map { |l| /\A(\S+\s+).*?\{\+([^\+]+)/.match(l).captures.join }.join("\n")' > "$targets" gh-action-multiline -name=lines < "$targets" | tee -a "$GITHUB_OUTPUT"