From bdbfe50bc0bbd3b5eb3fe72365f68e5dd6073895 Mon Sep 17 00:00:00 2001 From: Stephan Creutz Date: Fri, 16 Jun 2023 18:34:16 +0200 Subject: [PATCH] Upgrade deprecated actions/checkout@v2 to v3 Fixes the following Actions warning: "Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/." --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 700e61130..325b2ca93 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: env: EMACS_VERSION: ${{ matrix.emacs_version }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0