From 341f4ab9c2c67f8de2fb73e6145ac80d4e67258e Mon Sep 17 00:00:00 2001 From: stephan-cr Date: Sun, 18 Jun 2023 11:40:28 +0200 Subject: [PATCH] Upgrade deprecated actions/checkout@v2 to v3 (#2904) 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