From 1f5396a8c2c3e280062930d8580d46292a372e38 Mon Sep 17 00:00:00 2001 From: Rhodine Orleans-Lindsay <43888758+Rhodine-orleans-lindsay@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:27:42 +0000 Subject: [PATCH] change driver and action versions --- .github/workflows/automate-publish.yml | 4 ++-- .github/workflows/automate-tag.yml | 16 ++++++++-------- package.json | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/automate-publish.yml b/.github/workflows/automate-publish.yml index 9404823c..024f2cdd 100644 --- a/.github/workflows/automate-publish.yml +++ b/.github/workflows/automate-publish.yml @@ -11,10 +11,10 @@ jobs: runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/heads/master') steps: - - uses: actions/checkout@v2.2.0 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v4 with: node-version: 20 registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/automate-tag.yml b/.github/workflows/automate-tag.yml index 5fab72b2..b19d8335 100644 --- a/.github/workflows/automate-tag.yml +++ b/.github/workflows/automate-tag.yml @@ -10,8 +10,8 @@ jobs: node-version: [20.x] redis-version: [4, 5, 6] steps: - - uses: actions/checkout@v2.2.0 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Start Redis @@ -31,8 +31,8 @@ jobs: !contains(github.event.head_commit.message, '[MAJOR]') && !contains(github.event.head_commit.message, '[MINOR]') steps: - - uses: actions/checkout@v2.2.0 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 20 registry-url: https://registry.npmjs.org/ @@ -49,8 +49,8 @@ jobs: !contains(github.event.head_commit.message, '[MAJOR]') && contains(github.event.head_commit.message, '[MINOR]') steps: - - uses: actions/checkout@v2.2.0 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 20 registry-url: https://registry.npmjs.org/ @@ -67,8 +67,8 @@ jobs: contains(github.event.head_commit.message, '[MAJOR]') && !contains(github.event.head_commit.message, '[MINOR]') steps: - - uses: actions/checkout@v2.2.0 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 20 registry-url: https://registry.npmjs.org/ diff --git a/package.json b/package.json index 68b8c205..6c20843f 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "unit": "LOG_LEVEL=error nyc _mocha \"test/**/*.spec.js\" \"sandbox/test/**/*.spec.js\"", "unit:nocov": "LOG_LEVEL=error mocha \"test/**/*.spec.js\" \"sandbox/test/**/*.spec.js\"", "test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js", - "test:functional": "funkie --driver selenium mocha ./test/functional-tests --timeout 20000 --exit", + "test:functional": "funkie mocha ./test/functional-tests --timeout 20000 --exit", "test:client": "karma start test/frontend/toolkit/karma.conf.js", "test:cookie-banner": "jest test/frontend/jest", "test:acceptance": "TAGS=\"${TAGS:=@feature}\" yarn run test:cucumber",