From c66b03b8c60377161b9f526edd982f815b3938d3 Mon Sep 17 00:00:00 2001 From: thomasmerz Date: Tue, 17 Jan 2023 19:01:42 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20fix=20deprecation=20warning:=20N?= =?UTF-8?q?ode.js=2012=20actions=20are=20deprecated.=20(#1885)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🩹 fix deprecation warning: Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout@master Using version v3, latest or master: actions/checkout#689 Signed-off-by: Thomas Merz * Update .github/workflows/update-sh.yml Co-authored-by: J0WI Signed-off-by: thomasmerz Signed-off-by: Thomas Merz Signed-off-by: thomasmerz Co-authored-by: J0WI --- .github/workflows/update-sh.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-sh.yml b/.github/workflows/update-sh.yml index b9b791709..4e03239a6 100644 --- a/.github/workflows/update-sh.yml +++ b/.github/workflows/update-sh.yml @@ -13,7 +13,7 @@ jobs: name: Run update.sh script runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run update.sh script run: ./update.sh - name: Commit files