Skip to content

Commit

Permalink
fix(deps): update weekly minor & patch updates
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 3, 2024
1 parent 5b85041 commit 4fda73c
Show file tree
Hide file tree
Showing 9 changed files with 4,183 additions and 3,588 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
repository: csesoc/deployment
token: ${{ secrets.GH_TOKEN }}
- name: Install yq
uses: mikefarah/yq@v4.32.1
uses: mikefarah/yq@v4.44.3
- name: Update deployment
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
repository: csesoc/deployment
token: ${{ secrets.GH_TOKEN }}
- name: Install yq
uses: mikefarah/yq@v4.32.1
uses: mikefarah/yq@v4.44.3
- name: Update deployment
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:21.0-alpine as builder
FROM node:21.7-alpine as builder
WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
RUN yarn install --frozen-lockfile
COPY ./ .

RUN yarn build

FROM node:21.0-alpine as runner
FROM node:21.7-alpine as runner
ENV NODE_ENV production
WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
Expand Down
4 changes: 2 additions & 2 deletions backend/dev.dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:21.0-alpine as builder
FROM node:21.7-alpine as builder

WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
RUN yarn install --frozen-lockfile
COPY ./ .
RUN yarn build

FROM node:21.0-alpine as runner
FROM node:21.7-alpine as runner
ENV NODE_ENV development
WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
Expand Down
34 changes: 17 additions & 17 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.400.0",
"@t3-oss/env-core": "^0.6.1",
"@t3-oss/env-core": "^0.11.0",
"core-js": "^3.6.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
Expand All @@ -28,7 +28,7 @@
"nodemailer": "^6.3.0",
"openapi-types": "^12.0.2",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"reflect-metadata": "^0.2.0",
"sqlite3": "^5.0.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^5.0.0",
Expand Down Expand Up @@ -65,25 +65,25 @@
"lint:fix": "eslint --fix './src/**/*.ts'"
},
"devDependencies": {
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/helmet": "0.0.48",
"@types/node": "20.9.2",
"@types/nodemailer": "6.4.9",
"@types/swagger-jsdoc": "6.0.1",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"chai": "4.3.7",
"eslint": "8.36.0",
"eslint-config-prettier": "9.0.0",
"@types/node": "20.17.6",
"@types/nodemailer": "6.4.16",
"@types/swagger-jsdoc": "6.0.4",
"@types/swagger-ui-express": "4.1.7",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"chai": "4.5.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"mocha": "10.2.0",
"eslint-plugin-prettier": "5.2.1",
"mocha": "10.8.2",
"mochawesome": "7.1.3",
"nodemon": "^2.0.20",
"prettier": "3.0.3",
"supertest": "6.3.3",
"prettier": "3.3.3",
"supertest": "6.3.4",
"ts-node": "^10.9.1",
"tslint": "6.1.3",
"typescript": "4.9.5"
Expand Down
2 changes: 1 addition & 1 deletion backend/test.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:21.0-alpine
FROM node:21.7-alpine

WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
Expand Down
Loading

0 comments on commit 4fda73c

Please sign in to comment.