From 0da5d74da43eb6a78b36bb4a65a66f483421aa52 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 12 Jul 2021 10:23:52 -0700 Subject: [PATCH] build: update to setup-node@v2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit-lint.yml uses setup-node@v1 but all our other GitHub Actions use v2. Update commit-lint.yml. PR-URL: https://github.com/nodejs/node/pull/39366 Reviewed-By: Michaƫl Zasso Reviewed-By: Richard Lau Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel Reviewed-By: Zeyu Yang Reviewed-By: James M Snell --- .github/workflows/commit-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 9ea6337b51f181..66587c7cb0af24 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -11,7 +11,7 @@ jobs: # Last 100 commits should be enough for a PR fetch-depth: 100 - name: Use Node.js 12 - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: 12.x - name: Validate commit messages