Skip to content

Chore(env) - Node.js update #3559

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
- name: Make checkout
uses: actions/[email protected]

- name: Use Node.js 24.1.0
- name: Use Node.js 24.3.0
uses: actions/[email protected]
with:
node-version: 24.1.0
node-version: 24.3.0

- name: Install dependencies
run: yarn install
Expand All @@ -45,10 +45,10 @@ jobs:
- name: Make checkout
uses: actions/[email protected]

- name: Use Node.js 24.1.0
- name: Use Node.js 24.3.0
uses: actions/[email protected]
with:
node-version: 24.1.0
node-version: 24.3.0

- name: Install dependencies
run: yarn install
Expand Down Expand Up @@ -84,10 +84,10 @@ jobs:
- name: Make checkout
uses: actions/[email protected]

- name: Use Node.js 24.1.0
- name: Use Node.js 24.3.0
uses: actions/[email protected]
with:
node-version: 24.1.0
node-version: 24.3.0

- name: Install dependencies
run: yarn install
Expand All @@ -103,10 +103,10 @@ jobs:
- name: Make checkout
uses: actions/[email protected]

- name: Use Node.js 24.1.0
- name: Use Node.js 24.3.0
uses: actions/[email protected]
with:
node-version: 24.1.0
node-version: 24.3.0

- name: Install dependencies
run: yarn install
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Dependencies
FROM node:24.1.0-bullseye AS dependencies
FROM node:24.3.0-bullseye AS dependencies

WORKDIR /app

Expand All @@ -8,7 +8,7 @@ COPY package.json yarn.lock version.js ./
RUN yarn install

# Stage 2: Development
FROM node:24.1.0-slim AS development
FROM node:24.3.0-slim AS development

# Let's use bash as a default shell with login each time
SHELL ["/bin/bash", "--login", "-c"]
Expand Down
Loading