diff options
author | Taylor R Campbell <campbell@paredit.org> | 2024-11-03 21:23:14 +0000 |
---|---|---|
committer | Taylor R Campbell <campbell@paredit.org> | 2024-11-03 21:23:14 +0000 |
commit | b725b23a409b81e94c9cd1127d0d0c529e4230ed (patch) | |
tree | 1be12d1f5d2c0cd5499d3d982d377d1a4f9480aa /.github | |
parent | 659b4eddf2edf2a7febabc7cb426a7246ced09b7 (diff) |
.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.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ubuntu-latest.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 && |