From 231418a84a3cffe39a3f020a9e54ebc067fec208 Mon Sep 17 00:00:00 2001 From: Demian Katz Date: Wed, 25 Mar 2026 14:44:46 -0400 Subject: [PATCH] Upgrade GitHub Actions to latest versions --- .github/workflows/lint-prs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint-prs.yml b/.github/workflows/lint-prs.yml index 3bfa7de1..e7df070a 100644 --- a/.github/workflows/lint-prs.yml +++ b/.github/workflows/lint-prs.yml @@ -9,12 +9,12 @@ jobs: steps: - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: '20.x' + node-version: '20' - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install npm dependencies run: npm install @@ -23,7 +23,7 @@ jobs: run: npm run format - name: Auto-commit fixes - uses: EndBug/add-and-commit@v9 + uses: EndBug/add-and-commit@v10 with: default_author: github_actions add: "['api/*.js', 'api/src/', 'client/']"