diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index eeac178..d097942 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -16,14 +16,14 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Cache node_modules id: cache-modules uses: actions/cache@v4 with: path: node_modules - key: 18.x-${{ runner.OS }}-build-${{ hashFiles('package.json') }} + key: 20.x-${{ runner.OS }}-build-${{ hashFiles('package.json') }} - name: NPM Install if: steps.cache-modules.outputs.cache-hit != 'true' diff --git a/.github/workflows/pullRequests.yml b/.github/workflows/pullRequests.yml index 996c244..80b3348 100644 --- a/.github/workflows/pullRequests.yml +++ b/.github/workflows/pullRequests.yml @@ -15,14 +15,14 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Cache node_modules id: cache-modules uses: actions/cache@v4 with: path: node_modules - key: 18.x-${{ runner.OS }}-build-${{ hashFiles('package.json') }} + key: 20.x-${{ runner.OS }}-build-${{ hashFiles('package.json') }} - name: Install Dependencies if: steps.cache-modules.outputs.cache-hit != 'true'