We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4da3eec commit 15b0e8bCopy full SHA for 15b0e8b
.github/workflows/tools.yml
@@ -144,6 +144,16 @@ jobs:
144
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
145
./tools/dep_updaters/update-simdutf.sh "$NEW_VERSION"
146
fi
147
+ - id: nghttp2
148
+ subsystem: deps
149
+ label: dependencies
150
+ run: |
151
+ NEW_VERSION=$(gh api repos/nghttp2/nghttp2/releases/latest -q '.tag_name|ltrimstr("v")')
152
+ CURRENT_VERSION=$(grep "#define NGHTTP2_VERSION" ./deps/nghttp2/lib/includes/nghttp2ver.h | sed -n "s/^.*VERSION \(.*\)/\1/p")
153
+ if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then
154
+ echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
155
+ ./tools/update-nghttp2.sh "$NEW_VERSION"
156
+ fi
157
steps:
158
- uses: actions/checkout@v3
159
with:
0 commit comments