docker: upgrade `node` to 20.18.0 LTS (#3687)

* docker: upgrade node to 20.18.0 LTS

* update changelog

* update node on reusable test
This commit is contained in:
Jacob Creech 2025-04-30 20:34:59 -05:00 committed by GitHub
parent 936cb5a1ca
commit 3b5c5ed288
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 3 deletions

View File

@ -12,6 +12,6 @@ jobs:
with:
cache: false
solana_cli_version: 2.1.0
node_version: 20.16.0
node_version: 20.18.0
cargo_profile: release
anchor_binary_name: anchor-binary-no-caching

View File

@ -15,6 +15,6 @@ jobs:
with:
cache: true
solana_cli_version: 2.1.0
node_version: 20.16.0
node_version: 20.18.0
cargo_profile: debug
anchor_binary_name: anchor-binary

View File

@ -10,10 +10,14 @@ The minor version will be incremented upon a breaking change and the patch versi
## [Unreleased]
-
### Features
### Fixes
- docker: Upgrade `node` to 20.18.0 LTS ([#3179](https://github.com/solana-foundation/anchor/pull/3687)).
### Breaking
## [0.31.1] - 2025-04-19

View File

@ -10,7 +10,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ARG SOLANA_CLI
ARG ANCHOR_CLI
ARG NODE_VERSION="v20.16.0"
ARG NODE_VERSION="v20.18.0"
ENV HOME="/root"
ENV PATH="${HOME}/.cargo/bin:${PATH}"