From 2f160e0c8848bab566427a11eee116d8e834bcf0 Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Tue, 18 Oct 2022 10:43:54 -0400 Subject: [PATCH] test: change GitHub actions checkout from v2 to v3 GitHub actions is reporting a warning that actions/checkout@v2 includes the deprecated Node.js 12. So switch to actions/checkout@v3 which uses Node.js 16. As far as I can tell this has no impact on our workflow. For details see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ https://github.com/actions/checkout Signed-off-by: Vincent Fu --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdc4db85..1b8c0701 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: ./ci/actions-install.sh - name: Build -- 2.25.1