From 5ec0eadd66cec6a0c558e6ada4d8a44bc8365445 Mon Sep 17 00:00:00 2001 From: Andrew Warren Date: Sun, 30 Jun 2024 22:18:28 -0700 Subject: [PATCH] Run GitHub actions on Node 20 rather than Node 16 Node 16 has reached EOL and is deprecated. GitHub is transitioning to Node 20: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/pull-request-acceptance.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-acceptance.yml b/.github/workflows/pull-request-acceptance.yml index eed9f55..6f64cb5 100644 --- a/.github/workflows/pull-request-acceptance.yml +++ b/.github/workflows/pull-request-acceptance.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Ninja uses: seanmiddleditch/gha-setup-ninja@master - name: Build And Test