From c952eca8597917766ac99cfea9d89f2a17f343c3 Mon Sep 17 00:00:00 2001 From: rajsite Date: Tue, 15 Oct 2024 12:26:00 -0500 Subject: [PATCH] Update actions --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d9a9127..6918832 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,15 +8,15 @@ on: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - name: Install node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '22' registry-url: 'https://registry.npmjs.org' - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Install dependencies run: npm ci - name: Run tests