Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed May 25, 2024
1 parent b5ccb08 commit d371abe
Show file tree
Hide file tree
Showing 5 changed files with 1,357 additions and 1,177 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:

steps:
- name: Set Timezone
uses: szenius/set-timezone@v1.2
uses: szenius/set-timezone@v2.0
with:
timezoneLinux: Asia/Seoul

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

Expand All @@ -51,7 +51,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Expand All @@ -60,7 +60,7 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Check dependency cache
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-dependencies
with:
path: node_modules
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -56,7 +56,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
Expand All @@ -69,6 +69,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine
FROM node:20-alpine

RUN mkdir -p /app
WORKDIR /app
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"license": "UNLICENSED",
"engines": {
"node": "18.x"
"node": "20.x"
},
"scripts": {
"prebuild": "pnpm prisma:generate && rimraf dist",
Expand Down Expand Up @@ -57,11 +57,11 @@
"@opentelemetry/semantic-conventions": "1.17.0",
"@prisma/client": "5.3.1",
"@prisma/instrumentation": "5.3.1",
"bullmq": "^4.0.0",
"bullmq": "^5.0.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"date-fns": "2.30.0",
"firebase-admin": "11.10.1",
"date-fns": "3.6.0",
"firebase-admin": "12.1.1",
"graphql": "16.8.0",
"graphql-redis-subscriptions": "2.6.0",
"graphql-subscriptions": "2.0.0",
Expand All @@ -81,34 +81,34 @@
"@swc/core": "1.3.65",
"@swc/helpers": "0.5.1",
"@types/express": "4.17.17",
"@types/node": "18.17.16",
"@types/passport-jwt": "3.0.8",
"@types/supertest": "2.0.12",
"@types/node": "20.12.12",
"@types/passport-jwt": "4.0.1",
"@types/supertest": "6.0.2",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"@vitest/coverage-v8": "^0.34.0",
"eslint": "8.49.0",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.10.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "9.3.0",
"eslint-config-async": "2.0.1",
"eslint-config-prettier": "8.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"express": "4.18.2",
"graphql-ws": "^5.12.1",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"husky": "9.0.11",
"lint-staged": "15.2.5",
"prettier": "3.0.0",
"prisma": "5.3.1",
"source-map-support": "0.5.21",
"supertest": "6.3.3",
"supertest": "7.0.0",
"ts-loader": "9.4.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.2.2",
"unplugin-swc": "1.4.2",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.34.4",
"vitest": "1.6.0",
"vitest-mock-extended": "1.2.1",
"ws": "^8.13.0"
}
Expand Down
Loading

0 comments on commit d371abe

Please sign in to comment.