From b725b23a409b81e94c9cd1127d0d0c529e4230ed Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 3 Nov 2024 21:23:14 +0000 Subject: .github/workflows: Use actions/checkout@v4, not @v3. Pacifies Github complaint: > The following actions use a deprecated Node.js version and will be > forced to run on node20: actions/checkout@v3. For more info: > https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ Unclear from the readily-accessible documentation whether there is any other substantive change in v4 which might require changes to the usage. --- .github/workflows/ubuntu-latest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu-latest.yml b/.github/workflows/ubuntu-latest.yml index 79004c8..3d376d9 100644 --- a/.github/workflows/ubuntu-latest.yml +++ b/.github/workflows/ubuntu-latest.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: install emacs run: > sudo apt-get update && -- cgit v1.2.1