Skip to content

Commit c4ee39f

Browse files
renovate[bot]potb
andcommitted
chore(deps): update all dependencies
Co-authored-by: Peïo Thibault <[email protected]>
1 parent 37b1f83 commit c4ee39f

File tree

8 files changed

+124
-124
lines changed

8 files changed

+124
-124
lines changed

.github/workflows/check-pull-requests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-22.04
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 0
3232
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 0
3131

.github/workflows/integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-22.04
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
2222
ref: ${{ github.event.pull_request.head.sha }}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.5.1
1+
20.6.1

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20.5.1-alpine as base
1+
FROM node:20.6.0-alpine as base
22

33
WORKDIR /app
44

@@ -25,7 +25,7 @@ WORKDIR /app
2525

2626
RUN pnpm install --production --frozen-lockfile --offline
2727

28-
FROM node:20.5.1-alpine as application
28+
FROM node:20.6.0-alpine as application
2929

3030
WORKDIR /app
3131

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ volumes:
55

66
services:
77
redis:
8-
image: redis:7.2.0-alpine
8+
image: redis:7.2.1-alpine
99
ports:
1010
- '6379:6379'
1111
volumes:

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
"param-case": "3.0.4"
2525
},
2626
"devDependencies": {
27-
"@types/node": "20.5.8",
28-
"@typescript-eslint/eslint-plugin": "6.5.0",
29-
"@typescript-eslint/parser": "6.5.0",
27+
"@types/node": "20.6.0",
28+
"@typescript-eslint/eslint-plugin": "6.6.0",
29+
"@typescript-eslint/parser": "6.6.0",
3030
"dotenv": "16.3.1",
31-
"eslint": "8.48.0",
31+
"eslint": "8.49.0",
3232
"eslint-plugin-import": "2.28.1",
3333
"eslint-plugin-only-error": "1.0.2",
3434
"eslint-plugin-simple-import-sort": "10.0.0",
@@ -38,10 +38,10 @@
3838
"tsup": "7.2.0",
3939
"type-fest": "4.3.1",
4040
"typescript": "5.2.2",
41-
"vitest": "0.34.3"
41+
"vitest": "0.34.4"
4242
},
43-
"packageManager": "[email protected].1",
43+
"packageManager": "[email protected].4",
4444
"engines": {
45-
"node": "20.5.1"
45+
"node": "20.6.1"
4646
}
4747
}

0 commit comments

Comments
 (0)