Skip to content

Commit

Permalink
chore: downgrade to node 16 to fix the build job
Browse files Browse the repository at this point in the history
With Node 17 we are having the following message: `Error:
error:0308010C:digital envelope routines::unsupported`. Downgrading to Node 16
seems better than forcing `export NODE_OPTIONS=--openssl-legacy-provider` and
possibly running with [known insecure
SSL](https://www.openssl.org/docs/manmaster/man7/OSSL_PROVIDER-legacy.html).

Reference:
webpack/webpack#14532 (comment)
  • Loading branch information
victorlacorte committed Feb 3, 2022
1 parent a544ffc commit f332f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 17.x]
node-version: [14.x, 16.x]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit f332f0a

Please sign in to comment.