From 908a792d40839147b690d81dc1c0a097ce4527b6 Mon Sep 17 00:00:00 2001 From: Blake Embrey Date: Tue, 29 Apr 2025 10:34:40 -0700 Subject: [PATCH] Upgrade actions CI workflow --- .github/workflows/ci.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb8fdb9..3670433 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,18 +14,12 @@ jobs: - "18" - "*" steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - run: npm ci - run: npm test - - uses: codecov/codecov-action@v1 + - uses: codecov/codecov-action@v5 with: name: Node.js ${{ matrix.node-version }}