Skip to content

Commit bb92df6

Browse files
authored
feat: update uikit (#99)
1 parent 80212a1 commit bb92df6

File tree

6 files changed

+85
-106
lines changed

6 files changed

+85
-106
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818
- name: Setup Node
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: 20
2222
cache: npm
@@ -32,11 +32,11 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
fetch-depth: 0
3838
- name: Setup Node
39-
uses: actions/setup-node@v3
39+
uses: actions/setup-node@v4
4040
with:
4141
node-version: 20
4242
cache: npm

.github/workflows/main-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616
- name: Setup Node
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: 20
2020
- name: Install Packages

.github/workflows/pr-preview-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
github.event.workflow_run.conclusion == 'success'
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: gravity-ui/preview-deploy-action@v1
17+
- uses: gravity-ui/preview-deploy-action@v2
1818
with:
1919
project: table
2020
github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,19 @@ name: Release
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- release/v*
68

79
jobs:
810
release:
911
runs-on: ubuntu-latest
1012
steps:
11-
- uses: gravity-ui/release-action@v1
13+
- name: Release from ${{ github.ref_name }}
14+
uses: gravity-ui/release-action@v1
1215
with:
1316
github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
1417
npm-token: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
1518
node-version: 20
19+
default-branch: ${{ github.ref_name != 'main' && github.ref_name || null }}
20+
npm-dist-tag: ${{ github.ref_name != 'main' && 'untagged' || 'latest' }}

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"@gravity-ui/prettier-config": "^1.1.0",
9292
"@gravity-ui/stylelint-config": "^4.0.1",
9393
"@gravity-ui/tsconfig": "^1.0.0",
94-
"@gravity-ui/uikit": "^6.41.0",
94+
"@gravity-ui/uikit": "^7.0.0",
9595
"@storybook/addon-essentials": "^8.5.0",
9696
"@storybook/addon-styling-webpack": "^1.0.1",
9797
"@storybook/addon-webpack5-compiler-babel": "^3.0.5",
@@ -137,7 +137,7 @@
137137
"@dnd-kit/sortable": "^8.0.0 || ^9.0.0 || ^10.0.0",
138138
"@gravity-ui/i18n": "^1.0.0",
139139
"@gravity-ui/icons": "^2.0.0",
140-
"@gravity-ui/uikit": "^6.0.0",
140+
"@gravity-ui/uikit": "^6.0.0 || ^7.0.0",
141141
"react": "^17.0.0 || ^18.0.0",
142142
"react-dom": "^17.0.0 || ^18.0.0"
143143
},

0 commit comments

Comments
 (0)