Skip to content

Commit 992d2fd

Browse files
authored
Merge pull request #72 from uploadcare/chore/ci-dependabot
chore(ci): updated workflows
2 parents 3eae059 + c1fc0aa commit 992d2fd

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: "18"
16+
node-version: "20"
1717
- name: Install dependencies
1818
working-directory: ./
19-
run: npm ci
19+
run: npm i
2020
- name: Run build
2121
run: npm run build

package-lock.json

Lines changed: 19 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/react-uploader/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"next": ">= 13.0.0"
3535
},
3636
"dependencies": {
37-
"@uploadcare/file-uploader": "^1.16.2",
37+
"@uploadcare/file-uploader": "1.16.2",
3838
"@uploadcare/react-adapter": "^0.3.1"
3939
},
4040
"repository": {

packages/react-uploader/src/SSR/ConditionalSuspense/ConditionalSuspense.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { FC } from "react";
22

33
export type TProps = {
4-
fallback?: React.ReactChild | React.ReactFragment | React.ReactPortal | null;
4+
fallback?: React.ReactNode | React.ReactPortal | null;
55
condition?: boolean;
66
children: React.ReactNode;
77
};

0 commit comments

Comments
 (0)