summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMarco Ippolito <marcoippolito54@gmail.com>2023-03-10 22:17:06 +0100
committerGitHub <noreply@github.com>2023-03-10 21:17:06 +0000
commit359172868fa186bf8647fd58fa091d932481cbd4 (patch)
tree3b61a42960483b2c541cc7cf363b7b01cd6e87e8 /.github/workflows
parent59d85f50ea28ff8a99b1b7ac4dc5ee949dfb8dc7 (diff)
downloadnode-new-359172868fa186bf8647fd58fa091d932481cbd4.tar.gz
tools: automate cares update
PR-URL: https://github.com/nodejs/node/pull/46993 Refs: https://github.com/nodejs/security-wg/issues/828 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tools.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml
index 84193a6b32..8d4e5ae028 100644
--- a/.github/workflows/tools.yml
+++ b/.github/workflows/tools.yml
@@ -163,6 +163,14 @@ jobs:
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
./tools/update-llhttp.sh "$NEW_VERSION"
fi
+ - id: c-ares
+ subsystem: deps
+ label: dependencies
+ run: |
+ ./tools/dep_updaters/update-c-ares.sh > temp-output
+ cat temp-output
+ tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
+ rm temp-output
steps:
- uses: actions/checkout@v3
with: