From 2c341722c3fa571c35f61849a1235f1a580729a1 Mon Sep 17 00:00:00 2001 From: Josh Poimboeuf Date: Thu, 1 Dec 2022 09:08:29 -0800 Subject: [PATCH] github actions: fix warning with node 16 Attempt to fix the following 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@v2 Signed-off-by: Josh Poimboeuf --- .github/workflows/unit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index fccd12a..234515f 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -11,7 +11,7 @@ jobs: env: CFLAGS: ${{ matrix.cflags }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: dependencies run: sudo apt-get install -y libelf-dev linux-headers-$(uname -r) shellcheck elfutils - name: make