From 18c6d110189f3c3b63348c2058310f53e4f47519 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jul 2021 19:08:22 +0000 Subject: [PATCH 1/3] build(deps-dev): bump @types/assert from 1.5.4 to 1.5.5 Bumps [@types/assert](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/assert) from 1.5.4 to 1.5.5. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/assert) --- updated-dependencies: - dependency-name: "@types/assert" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- packages/json-rpc-ws/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/json-rpc-ws/package.json b/packages/json-rpc-ws/package.json index e7a3a4bb7b..da490903f8 100644 --- a/packages/json-rpc-ws/package.json +++ b/packages/json-rpc-ws/package.json @@ -41,7 +41,7 @@ ], "browser": "./browser.js", "devDependencies": { - "@types/assert": "1.5.4", + "@types/assert": "1.5.5", "@types/debug": "4.1.6", "@types/node": "^14.14.31", "@types/uuid": "^8.3.1", From f45d19a5ab51a5c96646c7da2316974dd7956ee5 Mon Sep 17 00:00:00 2001 From: Nicolas Penin Date: Wed, 21 Jul 2021 17:04:57 +0200 Subject: [PATCH 2/3] ci: fixes missing GITHUB_TOKEN --- .github/workflows/npm-publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 9e8b6fab22..db47a768a8 100755 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -49,4 +49,6 @@ jobs: - name: Compile run: yarn tsc -b packages - name: Publish - run: yarn semantic-release \ No newline at end of file + run: yarn semantic-release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 4ac37acc6eef3fa3969ac93067f98f88b6c43a1e Mon Sep 17 00:00:00 2001 From: Nicolas Penin Date: Wed, 21 Jul 2021 18:06:53 +0200 Subject: [PATCH 3/3] Update npm-publish.yml --- .github/workflows/npm-publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index db47a768a8..86524f3db9 100755 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -52,3 +52,4 @@ jobs: run: yarn semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }}