Skip to content

Commit 9d4ea45

Browse files
committed
fix: remove Install SSH Key step from github actions
1 parent b285b4d commit 9d4ea45

File tree

6 files changed

+3
-47
lines changed

6 files changed

+3
-47
lines changed

.github/workflows/e2e-ios.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,6 @@ jobs:
3535
timeout-minutes: 2
3636
run: while ! nc -z '127.0.0.1' 60001; do sleep 1; done
3737

38-
- name: Install SSH key
39-
uses: shimataro/ssh-key-action@v2
40-
with:
41-
key: ${{ secrets.TEST_USER_SSH_KEY }}
42-
known_hosts: ${{ secrets.TEST_USER_KNOWN_HOSTS }}
43-
44-
- name: Use NPM Token with organization read access
45-
uses: dkershner6/use-npm-token-action@v1
46-
with:
47-
token: '${{ secrets.NPMJS_READ }}'
48-
4938
- name: Setup Node
5039
uses: actions/setup-node@v3
5140
with:

.github/workflows/jest.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,6 @@ jobs:
3030
node-version: 18
3131
cache: 'yarn'
3232

33-
- name: Install SSH key
34-
uses: shimataro/ssh-key-action@v2
35-
with:
36-
key: ${{ secrets.TEST_USER_SSH_KEY }}
37-
known_hosts: ${{ secrets.TEST_USER_KNOWN_HOSTS }}
38-
39-
- name: Use NPM Token with organization read access
40-
uses: dkershner6/use-npm-token-action@v1
41-
with:
42-
token: '${{ secrets.NPMJS_READ }}'
43-
4433
- name: Install Node.js dependencies
4534
run: yarn install
4635

.github/workflows/lint-check.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,6 @@ jobs:
1919
node-version: 18
2020
cache: 'yarn'
2121

22-
- name: Install SSH key
23-
uses: shimataro/ssh-key-action@v2
24-
with:
25-
key: ${{ secrets.TEST_USER_SSH_KEY }}
26-
known_hosts: ${{ secrets.TEST_USER_KNOWN_HOSTS }}
27-
28-
- name: Use NPM Token with organization read access
29-
uses: dkershner6/use-npm-token-action@v1
30-
with:
31-
token: '${{ secrets.NPMJS_READ }}'
32-
3322
- name: Install Node.js dependencies
3423
run: yarn install
3524

.github/workflows/type-check.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,6 @@ jobs:
1919
node-version: 18
2020
cache: 'yarn'
2121

22-
- name: Install SSH key
23-
uses: shimataro/ssh-key-action@v2
24-
with:
25-
key: ${{ secrets.TEST_USER_SSH_KEY }}
26-
known_hosts: ${{ secrets.TEST_USER_KNOWN_HOSTS }}
27-
28-
- name: Use NPM Token with organization read access
29-
uses: dkershner6/use-npm-token-action@v1
30-
with:
31-
token: '${{ secrets.NPMJS_READ }}'
32-
3322
- name: Install Node.js dependencies
3423
run: yarn install
3524

nodejs-assets/nodejs-project/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"license": "MIT",
1111
"dependencies": {
1212
"@noble/secp256k1": "^1.7.0",
13-
"bip32": "git+ssh://git@github.com/synonymdev/bip32",
13+
"bip32": "github:synonymdev/bip32#58f0dd7d253d70fa5ff442997464892c46874348",
1414
"bip39": "^3.0.4",
1515
"bitcoinjs-lib": "^6.0.1",
1616
"create-hmac": "^1.1.7"

nodejs-assets/nodejs-project/yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ bip174@^2.0.1:
2929
resolved "https://registry.yarnpkg.com/bip174/-/bip174-2.1.0.tgz#cd3402581feaa5116f0f00a0eaee87a5843a2d30"
3030
integrity sha512-lkc0XyiX9E9KiVAS1ZiOqK1xfiwvf4FXDDdkDq5crcDzOq+xGytY+14qCsqz7kCiy8rpN1CRNfacRhf9G3JNSA==
3131

32-
"bip32@git+ssh://git@github.com/synonymdev/bip32":
32+
"bip32@github:synonymdev/bip32#58f0dd7d253d70fa5ff442997464892c46874348":
3333
version "3.1.0"
34-
resolved "git+ssh://git@github.com/synonymdev/bip32#58f0dd7d253d70fa5ff442997464892c46874348"
34+
resolved "https://codeload.github.com/synonymdev/bip32/tar.gz/58f0dd7d253d70fa5ff442997464892c46874348"
3535
dependencies:
3636
bs58check "^2.1.1"
3737
create-hash "^1.2.0"

0 commit comments

Comments
 (0)