Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/_circular.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [24.x]
node-version: [26.x]

steps:
- uses: actions/checkout@v6.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ jobs:
run: pnpm run deps:check
strategy:
matrix:
node-version: [24.x]
node-version: [26.x]
2 changes: 1 addition & 1 deletion .github/workflows/_lint-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [24.x]
node-version: [26.x]

steps:
- uses: actions/checkout@v6.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_lint-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

strategy:
matrix:
node-version: [24.x]
node-version: [26.x]

steps:
- uses: actions/checkout@v6.0.2
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: "Build"
strategy:
matrix:
node-version: [24.x]
node-version: [26.x]
concurrency:
cancel-in-progress: true
group: ${{ github.head_ref }}-unit
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- build
strategy:
matrix:
node-version: [24.x]
node-version: [26.x]
concurrency:
cancel-in-progress: true
group: ${{ github.head_ref }}-unit
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
- build
strategy:
matrix:
node-version: [24.x]
node-version: [26.x]
concurrency:
cancel-in-progress: true
group: ${{ github.head_ref }}-integration
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:

strategy:
matrix:
node-version: [24.x]
node-version: [26.x]
name: ["consensus"]

steps:
Expand Down Expand Up @@ -405,7 +405,7 @@ jobs:

strategy:
matrix:
node-version: [24.x]
node-version: [26.x]
name: ["clients"]

steps:
Expand Down Expand Up @@ -463,7 +463,7 @@ jobs:

strategy:
matrix:
node-version: [24.x]
node-version: [26.x]
name: ["snapshot"]

steps:
Expand Down Expand Up @@ -542,7 +542,7 @@ jobs:

strategy:
matrix:
node-version: [24.x]
node-version: [26.x]
name: ["sync"]

steps:
Expand Down Expand Up @@ -616,7 +616,7 @@ jobs:

strategy:
matrix:
node-version: [24.x]
node-version: [26.x]
name: ["transaction-pool-api", "consensus", "resync"]

services:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-evm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v6.3.0
with:
node-version: "24.x"
node-version: "26.x"

- name: Setup pnpm
uses: pnpm/action-setup@v4.3.0
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v6.3.0
with:
node-version: "24.x"
node-version: "26.x"
registry-url: https://registry.npmjs.org/

- name: Setup pnpm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v6.3.0
with:
node-version: "24.x"
node-version: "26.x"

- name: Setup pnpm
uses: pnpm/action-setup@v4.3.0
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v6.3.0
with:
node-version: "24.x"
node-version: "26.x"
registry-url: https://registry.npmjs.org/

- name: Setup pnpm
Expand Down
2 changes: 1 addition & 1 deletion scripts/install-testnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ heading "Installing node.js & npm..."
sudo rm -rf ~/{.npm,.forever,.node*,.cache,.nvm}
(echo -e "Package: nodejs\nPin: origin deb.nodesource.com\nPin-Priority: 999" | sudo tee /etc/apt/preferences.d/nodesource)
curl -sL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor | sudo tee /usr/share/keyrings/nodesource.gpg >/dev/null
(echo "deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_24.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list)
(echo "deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_26.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list)
sudo apt-get update
sudo $APT_ENV apt-get install nodejs -yq

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/clients/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \
build-essential \
libjemalloc2

RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash -
RUN curl -fsSL https://deb.nodesource.com/setup_26.x | bash -
RUN apt-get install -y nodejs

WORKDIR /home/ubuntu
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/consensus/checks/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \
build-essential \
libjemalloc2

RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash -
RUN curl -fsSL https://deb.nodesource.com/setup_26.x | bash -
RUN apt-get install -y nodejs

WORKDIR /home/ubuntu
Expand All @@ -20,7 +20,7 @@ RUN npm install -g npm@latest \
&& su ubuntu -c "npm install --prefix=/home/ubuntu/.pnpm -g pnpm" \
&& su ubuntu -c "export PNPM_HOME=/home/ubuntu/.pnpm/bin"


COPY *.mjs package.json ./
COPY abis/ abis/

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/consensus/nodes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \
build-essential \
libjemalloc2

RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash -
RUN curl -fsSL https://deb.nodesource.com/setup_26.x | bash -
RUN apt-get install -y nodejs

WORKDIR /home/ubuntu
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/snapshot/nodes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \
build-essential \
libjemalloc2

RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash -
RUN curl -fsSL https://deb.nodesource.com/setup_26.x | bash -
RUN apt-get install -y nodejs

WORKDIR /home/ubuntu
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/sync/nodes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \
build-essential \
libjemalloc2

RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash -
RUN curl -fsSL https://deb.nodesource.com/setup_26.x | bash -
RUN apt-get install -y nodejs

WORKDIR /home/ubuntu
Expand Down
Loading