diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c5bd93cd..97b856c4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,10 +26,10 @@ jobs: - name: Make checkout uses: actions/checkout@v4.2.2 - - name: Use Node.js 24.8.0 + - name: Use Node.js 24.9.0 uses: actions/setup-node@v4.1.0 with: - node-version: 24.8.0 + node-version: 24.9.0 - name: Install dependencies run: yarn install @@ -45,10 +45,10 @@ jobs: - name: Make checkout uses: actions/checkout@v4.2.2 - - name: Use Node.js 24.8.0 + - name: Use Node.js 24.9.0 uses: actions/setup-node@v4.1.0 with: - node-version: 24.8.0 + node-version: 24.9.0 - name: Install dependencies run: yarn install @@ -84,10 +84,10 @@ jobs: - name: Make checkout uses: actions/checkout@v4.2.2 - - name: Use Node.js 24.8.0 + - name: Use Node.js 24.9.0 uses: actions/setup-node@v4.1.0 with: - node-version: 24.8.0 + node-version: 24.9.0 - name: Install dependencies run: yarn install @@ -103,10 +103,10 @@ jobs: - name: Make checkout uses: actions/checkout@v4.2.2 - - name: Use Node.js 24.8.0 + - name: Use Node.js 24.9.0 uses: actions/setup-node@v4.1.0 with: - node-version: 24.8.0 + node-version: 24.9.0 - name: Install dependencies run: yarn install diff --git a/Dockerfile b/Dockerfile index 1731d4de..21cecf08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Dependencies -FROM node:24.8.0-bullseye AS dependencies +FROM node:24.9.0-bullseye AS dependencies WORKDIR /app