From a70b477bdc4ed2de797fa6382ac353a944f38e4c Mon Sep 17 00:00:00 2001 From: Kiryl Bahdanau Date: Fri, 3 May 2024 15:17:33 +0200 Subject: [PATCH] docs: update example to recent version of actions and Node.js v20 (#183) Node 16 is almost deprecated and cause warnings --- docs/README_environment_github_actions.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/README_environment_github_actions.md b/docs/README_environment_github_actions.md index 734a930..2de0bfe 100644 --- a/docs/README_environment_github_actions.md +++ b/docs/README_environment_github_actions.md @@ -50,12 +50,12 @@ More info can be found here: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Use Node.js 16.x - uses: actions/setup-node@v3 + - name: Use Node.js 20.x + uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x cache: "npm" - name: Prepare and deploy