From ec36eb2d86bef4b3aff4980c20133ef032889519 Mon Sep 17 00:00:00 2001 From: NGPixel Date: Fri, 1 May 2026 06:15:46 -0400 Subject: [PATCH] fix: update arm docker base to node 24 --- .github/workflows/build.yml | 4 ++-- dev/build-arm/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 44d404d8..22974b1f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -362,7 +362,7 @@ jobs: # SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK - name: Notify Telegram Channel - uses: appleboy/telegram-action@v0.1.1 + uses: appleboy/telegram-action@v1.0.1 with: to: ${{ secrets.TELEGRAM_TO }} token: ${{ secrets.TELEGRAM_TOKEN }} @@ -384,7 +384,7 @@ jobs: # needs: [release] # steps: - # - uses: actions/checkout@v4 + # - uses: actions/checkout@v6 # - name: Set Version Variables # run: | diff --git a/dev/build-arm/Dockerfile b/dev/build-arm/Dockerfile index 19342ee3..61fa23be 100644 --- a/dev/build-arm/Dockerfile +++ b/dev/build-arm/Dockerfile @@ -1,7 +1,7 @@ # ========================= # --- BUILD NPM MODULES --- # ========================= -FROM node:20-alpine AS build +FROM node:24-alpine AS build RUN apk add yarn g++ make cmake python3 --no-cache @@ -16,7 +16,7 @@ RUN yarn patch-package # =============== # --- Release --- # =============== -FROM node:20-alpine +FROM node:24-alpine LABEL maintainer="requarks.io" RUN apk add bash curl git openssh gnupg sqlite --no-cache && \