Skip to content
This repository was archived by the owner on Dec 28, 2023. It is now read-only.

Commit 5532a6a

Browse files
committed
fix: update dependencies to latest
1 parent 2bdcae8 commit 5532a6a

File tree

10 files changed

+1000
-670
lines changed

10 files changed

+1000
-670
lines changed

.github/workflows/analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
language: ['javascript']
1717

1818
steps:
19-
- uses: 'actions/checkout@v3.6.0'
19+
- uses: 'actions/checkout@v4.0.0'
2020

2121
- name: 'Initialize CodeQL'
2222
uses: 'github/codeql-action/init@v2'

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
runs-on: 'ubuntu-latest'
1212
steps:
13-
- uses: 'actions/checkout@v3.6.0'
13+
- uses: 'actions/checkout@v4.0.0'
1414

1515
- name: 'Setup Node.js'
1616
uses: 'actions/[email protected]'

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
lint:
1111
runs-on: 'ubuntu-latest'
1212
steps:
13-
- uses: 'actions/checkout@v3.6.0'
13+
- uses: 'actions/checkout@v4.0.0'
1414

1515
- name: 'Setup Node.js'
1616
uses: 'actions/[email protected]'

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
release:
99
runs-on: 'ubuntu-latest'
1010
steps:
11-
- uses: 'actions/checkout@v3.6.0'
11+
- uses: 'actions/checkout@v4.0.0'
1212
with:
1313
fetch-depth: 0
1414
persist-credentials: false
1515

1616
- name: 'Import GPG key'
17-
uses: 'crazy-max/ghaction-import-gpg@v5.3.0'
17+
uses: 'crazy-max/ghaction-import-gpg@v6.0.0'
1818
with:
1919
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
2020
git_user_signingkey: true

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
runs-on: 'ubuntu-latest'
1212
steps:
13-
- uses: 'actions/checkout@v3.6.0'
13+
- uses: 'actions/checkout@v4.0.0'
1414

1515
- name: 'Setup Node.js'
1616
uses: 'actions/[email protected]'

.swcrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"syntax": "typescript",
66
"dynamicImport": true
77
},
8-
"target": "es2022"
8+
"target": "esnext"
99
},
1010
"module": {
1111
"type": "es6"

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
FROM node:20.5.1 AS dependencies
1+
FROM node:20.6.1 AS dependencies
22
WORKDIR /usr/src/app
33
COPY ./package*.json ./
44
RUN npm clean-install
55

6-
FROM node:20.5.1 AS builder
6+
FROM node:20.6.1 AS builder
77
WORKDIR /usr/src/app
88
COPY --from=dependencies /usr/src/app/node_modules ./node_modules
99
COPY ./ ./
1010
RUN npm run prisma:generate && npm run build
1111

12-
FROM node:20.5.1 AS runner
12+
FROM node:20.6.1 AS runner
1313
WORKDIR /usr/src/app
1414
ENV NODE_ENV=production
1515
ENV NODE_OPTIONS=--enable-source-maps

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
Thream's Application Programming Interface (API) to stay close with your friends and communities.
2020

21-
It uses [Thream/file-uploads-api](https://github.com/Thream/file-uploads-api) [v1.1.6](https://github.com/Thream/file-uploads-api/releases/tag/v1.1.6).
21+
It uses [Thream/file-uploads-api](https://github.com/Thream/file-uploads-api) [v1.1.7](https://github.com/Thream/file-uploads-api/releases/tag/v1.1.7).
2222

2323
## ⚙️ Getting Started
2424

0 commit comments

Comments
 (0)