Skip to content

Commit d08899d

Browse files
committed
Bump packages
Fix unique id for TextFields
1 parent ddad98b commit d08899d

File tree

6 files changed

+1198
-1420
lines changed

6 files changed

+1198
-1420
lines changed

.eslintrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ settings:
99
node:
1010
paths: ['./src']
1111
extensions: ['.js', '.jsx']
12+
rules:
13+
react/require-default-props: off

.github/workflows/publish-package.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
1515

1616
- name: Git Checkout
17-
uses: actions/checkout@v1
17+
uses: actions/checkout@v2
18+
with:
19+
ref: master
1820

1921
- name: Lint & Build
20-
uses: actions/setup-node@v1
22+
uses: actions/setup-node@v1.4.0
2123
with:
2224
node-version: '12.x'
2325
registry-url: https://npm.pkg.github.com/
@@ -36,11 +38,10 @@ jobs:
3638
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
3739

3840
- name: Create Pull Request
39-
uses: peter-evans/create-pull-request@v1.7.3
41+
uses: peter-evans/create-pull-request@v2.4.4
4042
with:
4143
token: ${{ secrets.GITHUB_TOKEN }}
4244
commit-message: Bump version ${{ steps.get_version.outputs.VERSION }}
4345
title: Bump version ${{ steps.get_version.outputs.VERSION }}
4446
body: Bump package.json version
4547
branch: bump-version-${{ steps.get_version.outputs.VERSION }}
46-
base: master

.github/workflows/pull-request-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88

99
steps:
1010
- run: echo ::set-env name=NPM_TOKEN::${{secrets.GITHUB_TOKEN}}
11-
- uses: actions/checkout@v1
12-
- uses: actions/setup-node@v1
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v1.4.0
1313
with:
1414
node-version: '12.x'
1515
- name: npm install, build, and test

0 commit comments

Comments
 (0)