From: Vincent Fu Date: Tue, 18 Oct 2022 14:43:54 +0000 (-0400) Subject: test: change GitHub actions checkout from v2 to v3 X-Git-Tag: fio-3.33~13 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=2f160e0c8848bab566427a11eee116d8e834bcf0;p=fio.git 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 --- 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