From d49745caeaf5e7261519669664515749f6e80e5f Mon Sep 17 00:00:00 2001 From: Bastian Krol Date: Wed, 4 Sep 2024 10:42:20 +0200 Subject: [PATCH] ci: unpin Node.js 22.x Now that Node.js 22.8 is out, which fixes https://github.com/nodejs/node/issues/54518, we can unpin Node.js 22 again. This commit reverts #80345a1cd11a13a7fa9e7db8230244ed56c78034. --- .github/workflows/verify.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml index b8bb604..a25626d 100644 --- a/.github/workflows/verify.yaml +++ b/.github/workflows/verify.yaml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [ '18.x', '20.x', '21.x', '22.6' ] + node-version: [ '18.x', '20.x', '21.x', '22.x' ] steps: - uses: actions/checkout@v4