From d26d8b59281f51e9f1b3490abf9055bffab1f7ff Mon Sep 17 00:00:00 2001 From: Meenakshisundaram Koushik Date: Sat, 4 May 2024 19:50:22 +0530 Subject: [PATCH] fix(workflows): switch CI workflow to node v20 Github has removed node14 from the runners and deprecated node16 since it's past its end of life[1]. Workflows containing actions using old node versions emit deprecation warnings. This commit removes the warning by switching to latest stable versions of the affected actions. [1]: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e2009b0ca1..8cc55d346f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,8 +12,8 @@ jobs: node-version: - 14 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm install