Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 24.x

- name: Build App
run: |
Expand Down Expand Up @@ -61,10 +61,10 @@ jobs:
with:
fetch-depth: 0

- name: Use Node.js 18.x
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 24.x

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down Expand Up @@ -113,10 +113,10 @@ jobs:
with:
fetch-depth: 0

- name: Use Node.js 18.x
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 24.x

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@
# docker run --rm -p 3001:3000 gofr-website:local

# ---------- builder ----------
FROM node:23.11.1-alpine3.21 AS builder
# Node 24 is the active LTS (EOL 2028-04-30). Tracked as the major tag
# rather than an exact patch pin: this repo has no Renovate/Dependabot,
# and the previous exact pin (node:23.11.1-alpine3.21) silently outlived
# its line — v23 was never LTS and went EOL 2025-06-01. A floating major
# picks up patch + Alpine security updates on rebuild and only needs a
# human when the major itself goes EOL.
FROM node:24-alpine AS builder

RUN apk add --no-cache libc6-compat

Expand Down