Skip to content

Commit 2b77fe5

Browse files
Merge pull request #476 from monstar-lab-oss/minor-version-update
chore(deps): update minor versions in package.json
2 parents c5da3cc + 38942ae commit 2b77fe5

File tree

10 files changed

+2322
-1594
lines changed

10 files changed

+2322
-1594
lines changed

.github/workflows/build-workflow.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
16-
- uses: actions/setup-node@v3
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
1717
with:
18-
node-version: 20.14.0
19-
- name: Cache node modules
20-
uses: actions/cache@v3
21-
with:
22-
path: ~/.npm
23-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
24-
restore-keys: |
25-
${{ runner.os }}-node-
18+
node-version: 20.19.6
19+
cache: 'npm'
2620
- run: npm ci
2721
- name: Run build step
2822
run: npm run build

.github/workflows/sonarqube-workflow.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,13 @@ jobs:
1515
name: SonarCloud
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
21-
- uses: actions/setup-node@v3
21+
- uses: actions/setup-node@v4
2222
with:
23-
node-version: 20.14.0
24-
- name: Cache node modules
25-
uses: actions/cache@v3
26-
with:
27-
path: ~/.npm
28-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
29-
restore-keys: |
30-
${{ runner.os }}-node-
23+
node-version: 20.19.6
24+
cache: 'npm'
3125
- run: npm ci
3226
- name: Run test cov
3327
run: npm run test:cov

.github/workflows/tests-workflow.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,11 @@ jobs:
2525
DEFAULT_ADMIN_USER_PASSWORD: example_admin_pass
2626

2727
steps:
28-
- uses: actions/checkout@v3
29-
- uses: actions/setup-node@v3
28+
- uses: actions/checkout@v4
29+
- uses: actions/setup-node@v4
3030
with:
31-
node-version: 20.14.0
32-
- name: Cache node modules
33-
uses: actions/cache@v3
34-
with:
35-
path: ~/.npm
36-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
37-
restore-keys: |
38-
${{ runner.os }}-node-
31+
node-version: 20.19.6
32+
cache: 'npm'
3933
- run: npm ci
4034
- name: Run unit tests
4135
run: npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,3 +393,4 @@ local/
393393
documentation
394394
test-report.xml
395395
tsconfig.build.tsbuildinfo
396+
.nvmrc

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org/

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 20.14.0
1+
nodejs 20.19.6

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Development Dockerfile
2-
FROM node:20.14.0-bookworm-slim
2+
FROM node:20.19.6-bookworm-slim
33

44
# Install additional tools for development
55
RUN apt-get update && apt-get install -y \

Dockerfile.prod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Build the application
2-
FROM node:20.14.0-bookworm-slim as builder
2+
FROM node:20.19.6-bookworm-slim as builder
33

44
WORKDIR /usr/src/app
55

@@ -19,7 +19,7 @@ RUN npm run build
1919
RUN npm prune --production
2020

2121
# Stage 2: Create the production image
22-
FROM node:20.14.0-bookworm-slim
22+
FROM node:20.19.6-bookworm-slim
2323

2424
WORKDIR /usr/src/app
2525

0 commit comments

Comments
 (0)