From dd400341ad2845558aa94899e07926e164db2d1c Mon Sep 17 00:00:00 2001 From: Marco Ippolito Date: Fri, 17 Feb 2023 16:29:53 +0100 Subject: [PATCH] tools: fixed path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/46700 Reviewed-By: Rafael Gonzaga Reviewed-By: Yagiz Nizipli Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Tierney Cyren Reviewed-By: Jiawen Geng Reviewed-By: Michaƫl Zasso Reviewed-By: James M Snell --- .github/workflows/tools.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index c669e21c5a9fb9..e92a2e787a7b91 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -159,7 +159,7 @@ jobs: label: dependencies run: | NEW_VERSION=$(gh api repos/nghttp2/nghttp2/releases/latest -q '.tag_name|ltrimstr("v")') - CURRENT_VERSION=$(grep "#define NGHTTP2_VERSION" ./deps/nghttp2/lib/includes/nghttp2ver.h | sed -n "s/^.*VERSION \(.*\)/\1/p") + CURRENT_VERSION=$(grep "#define NGHTTP2_VERSION" ./deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h | sed -n "s/^.*VERSION \(.*\)/\1/p") if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV ./tools/update-nghttp2.sh "$NEW_VERSION"