From 483a4798de7c23d276303b4b3c6be6d5fe83affc Mon Sep 17 00:00:00 2001 From: Dan Gowans Date: Wed, 19 Jun 2024 13:35:34 -0400 Subject: [PATCH] update actions, update cypress --- .github/workflows/coverage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 1fb80a57..50fdedfe 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -18,16 +18,16 @@ jobs: DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }} name: Node ${{ matrix.node }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - name: Install Application run: | npm ci - npm install -g mocha c8 cypress@12 + npm install -g mocha c8 cypress@13 - name: Copy Test Config run: cp ./data/config.testing.js ./data/config.js