From 8d79125a3ebf13e5ba7d362cd8a5dcd3d8b826f7 Mon Sep 17 00:00:00 2001 From: Troy Brown Date: Sat, 10 Aug 2024 13:43:20 -0400 Subject: [PATCH] Update GitHub Actions from node16 to node20. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39fb0fe..065429f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,20 +13,20 @@ jobs: working-directory: tree-sitter-gpr steps: - name: Checkout (tree-sitter-gpr) - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: tree-sitter-gpr - name: Checkout (gpr) - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: adacore/gpr path: gpr - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x - name: Install Module Dependencies run: npm install