From 01a5476dfe2927f8ef32dc07aed571e57e3e17bd Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Mon, 12 Feb 2024 08:57:49 -0500 Subject: [PATCH] update github actions --- .github/workflows/pr-checks.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 59c81c9..db9731e 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -12,18 +12,18 @@ jobs: pr-checks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache node_modules id: node-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: node_modules key: node-modules-${{ hashFiles('package-lock.json') }} - name: Cache cypress binary id: cypress-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /home/runner/.cache/Cypress key: cypress-${{ hashFiles('package-lock.json') }}