Skip to content

Commit

Permalink
ci: update Node version to 18.x in GitHub Actions workflow (#836)
Browse files Browse the repository at this point in the history
Update the GitHub Actions CI configuration to use Node 18.x instead of
14.x.

This change addresses build failures caused by a transitive dependency
([email protected]) requiring Node >=18.0.0. Previously, our CI was
running Node 14.x, which was incompatible with the latest dependency
updates coming through packages such as ethereum-cryptography and
ganache.

No changes to the application code are included; this update only
affects the CI configuration.
  • Loading branch information
lrsaturnino authored Feb 7, 2025
2 parents 668e811 + 0301481 commit c8744ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/npm-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "14.x"
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
cache: "yarn"
cache-dependency-path: solidity/yarn.lock
Expand Down

0 comments on commit c8744ce

Please sign in to comment.