From e8e58f0d8bf41b83f1bcb534209f34735c82c16c Mon Sep 17 00:00:00 2001 From: Neal Beeken Date: Wed, 8 Jul 2026 15:48:50 -0400 Subject: [PATCH] chore: fix generated files workflow by using newer node but pinning npm 10 --- .github/workflows/cron-tasks.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cron-tasks.yml b/.github/workflows/cron-tasks.yml index cfc623414c..980ebceaed 100644 --- a/.github/workflows/cron-tasks.yml +++ b/.github/workflows/cron-tasks.yml @@ -39,7 +39,10 @@ jobs: - uses: actions/setup-node@v6 with: check-latest: true - node-version: 20.x + node-version: 24.x + + - name: Pin npm + run: npm install -g npm@10 - name: Install Dependencies and Compile run: |