Skip to content

Commit 6c46a61

Browse files
Bump ip from 2.0.0 to 2.0.1 (#1155)
* Bump ip from 2.0.0 to 2.0.1 Bumps [ip](https://github.com/indutny/node-ip) from 2.0.0 to 2.0.1. - [Commits](indutny/node-ip@v2.0.0...v2.0.1) --- updated-dependencies: - dependency-name: ip dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Attempt to fix running specs * Update other actions to match new format --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bob Saris <[email protected]>
1 parent b193746 commit 6c46a61

File tree

5 files changed

+15
-19
lines changed

5 files changed

+15
-19
lines changed

.github/workflows/chromatic.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,16 @@ on:
1313
jobs:
1414
chromatic-deployment:
1515
runs-on: ubuntu-latest
16-
env:
17-
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
1816
steps:
1917
- uses: actions/checkout@v2
2018
with:
2119
fetch-depth: 0 # 👈 Required to retrieve git history
2220
- uses: actions/setup-node@v3
2321
with:
2422
node-version-file: '.node-version'
25-
- run: npm config set "@fortawesome:registry" https://npm.fontawesome.com/ &&
26-
npm config set "//npm.fontawesome.com/:_authToken" $FONTAWESOME_NPM_AUTH_TOKEN
23+
- run: |
24+
npm config set "@fortawesome:registry" https://npm.fontawesome.com/
25+
npm config set "//npm.fontawesome.com/:_authToken" ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
2726
- run: yarn
2827
- name: Publish to Chromatic
2928
uses: chromaui/action@v1

.github/workflows/create-new-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@ jobs:
66
create-new-release:
77
name: Create new release
88
runs-on: ubuntu-latest
9-
env:
10-
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
119
steps:
1210
- uses: actions/checkout@v2
1311
- uses: actions/setup-node@v3
1412
with:
1513
node-version-file: '.node-version'
16-
- run: npm config set "@fortawesome:registry" https://npm.fontawesome.com/ &&
17-
npm config set "//npm.fontawesome.com/:_authToken" $FONTAWESOME_NPM_AUTH_TOKEN
14+
- run: |
15+
npm config set "@fortawesome:registry" https://npm.fontawesome.com/
16+
npm config set "//npm.fontawesome.com/:_authToken" ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
1817
- run: yarn install
1918

2019
- name: Initialize mandatory git config

.github/workflows/lint.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ on: push
55
jobs:
66
js-lint:
77
runs-on: ubuntu-latest
8-
env:
9-
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
108
steps:
119
- uses: actions/checkout@v2
1210
- uses: actions/setup-node@v3
1311
with:
1412
node-version-file: '.node-version'
15-
- run: npm config set "@fortawesome:registry" https://npm.fontawesome.com/ &&
16-
npm config set "//npm.fontawesome.com/:_authToken" $FONTAWESOME_NPM_AUTH_TOKEN
13+
- run: |
14+
npm config set "@fortawesome:registry" https://npm.fontawesome.com/
15+
npm config set "//npm.fontawesome.com/:_authToken" ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
1716
- run: yarn
1817
- run: yarn lint

.github/workflows/test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ on: push
55
jobs:
66
js-test:
77
runs-on: ubuntu-latest
8-
env:
9-
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
108
steps:
119
- uses: actions/checkout@v2
1210
- uses: actions/setup-node@v3
1311
with:
1412
node-version-file: '.node-version'
15-
- run: npm config set "@fortawesome:registry" https://npm.fontawesome.com/ &&
16-
npm config set "//npm.fontawesome.com/:_authToken" $FONTAWESOME_NPM_AUTH_TOKEN
13+
- run: |
14+
npm config set "@fortawesome:registry" https://npm.fontawesome.com/
15+
npm config set "//npm.fontawesome.com/:_authToken" ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
1716
- run: yarn
1817
- run: yarn test

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7660,9 +7660,9 @@ invariant@^2.2.4:
76607660
loose-envify "^1.0.0"
76617661

76627662
ip@^2.0.0:
7663-
version "2.0.0"
7664-
resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da"
7665-
integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==
7663+
version "2.0.1"
7664+
resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.1.tgz#e8f3595d33a3ea66490204234b77636965307105"
7665+
integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==
76667666

76677667
76687668
version "1.9.1"

0 commit comments

Comments
 (0)