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
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.5.0
- name: Use Node.js 24.6.0
uses: actions/[email protected]
with:
node-version: 24.5.0
node-version: 24.6.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.5.0
- name: Use Node.js 24.6.0
uses: actions/[email protected]
with:
node-version: 24.5.0
node-version: 24.6.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.5.0
- name: Use Node.js 24.6.0
uses: actions/[email protected]
with:
node-version: 24.5.0
node-version: 24.6.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.5.0
- name: Use Node.js 24.6.0
uses: actions/[email protected]
with:
node-version: 24.5.0
node-version: 24.6.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.5.0-bullseye AS dependencies
FROM node:24.6.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.5.0-slim AS development
FROM node:24.6.0-slim AS development

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