From 6edc29448558443d6ab3041af8e0140a58f96fba Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Sun, 29 Sep 2024 09:04:41 +0200 Subject: [PATCH] Fix node.js v16 deprecation self-smoke-test-action.yml actions/checkout@v3 use node.js versio 16. But version 16 is deprecated. version 4 fixes the problem. --- .github/workflows/self-smoke-test-action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/self-smoke-test-action.yml b/.github/workflows/self-smoke-test-action.yml index eecd8cc..b655019 100644 --- a/.github/workflows/self-smoke-test-action.yml +++ b/.github/workflows/self-smoke-test-action.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Check out the action locally - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: test - name: Install the packaging-related tools