Skip to content

Commit

Permalink
downgrade Node.js to version 16 (which uses OpenSSL 1.x)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjeetkumaritoutlook committed Dec 13, 2024
1 parent ee49c69 commit fb616a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '16'
# (ERR_OSSL_EVP_UNSUPPORTED) typically arises because Node.js is using OpenSSL 3.x, which has stricter defaults. Some libraries, such as webpack or older dependencies, may not yet be compatible with these stricter OpenSSL 3.x settings.
# NODE_OPTIONS=--openssl-legacy-provider ng deploy

- name: Install dependencies
run: npm ci
Expand Down

0 comments on commit fb616a9

Please sign in to comment.