From cababfebac0891349e552b1ba94d9a44ec75b41a Mon Sep 17 00:00:00 2001 From: "Dr. Jens Harbott" Date: Tue, 29 Nov 2022 19:11:26 +0100 Subject: [PATCH] Use recent node version for markdownlint job As shown in [0] the markdownlint job is currently broken, as the ensure-nodejs role still defaults to node_version 6, which is severly outdated and no longer installable on our current default Ubuntu 22.04 nodes. Pin to the latest LTS node version, 18. [0] https://review.opendev.org/c/opendev/sandbox/+/618075 Change-Id: I864587f1fd6d32dc5e744fb3cf00e13485cba326 --- zuul.d/python-jobs.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zuul.d/python-jobs.yaml b/zuul.d/python-jobs.yaml index 87ac79986..384798bfa 100644 --- a/zuul.d/python-jobs.yaml +++ b/zuul.d/python-jobs.yaml @@ -436,3 +436,5 @@ `.markdownlint.json` that is configured according to https://github.com/DavidAnson/markdownlint#optionsconfig to control rule specifics. + vars: + node_version: 18