Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 78e3ed5

Browse files
authored
Merge branch 'master' into fix/anonbind
2 parents 5598fed + 91de94d commit 78e3ed5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2.1.5
14+
- uses: actions/setup-node@v2.3.0
1515
with:
1616
node-version: '14'
1717
- name: Install Packages

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- uses: actions/checkout@v2
25-
- uses: actions/setup-node@v2.1.5
25+
- uses: actions/setup-node@v2.3.0
2626

2727
# Hack way to start service since GitHub doesn't integrate with its own services
2828
- name: Docker login

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v2
17-
- uses: actions/setup-node@v2.1.5
17+
- uses: actions/setup-node@v2.3.0
1818
- name: Install Packages
1919
run: npm install
2020
- name: Lint Code
@@ -35,20 +35,20 @@ jobs:
3535
runs-on: ${{ matrix.os }}
3636
steps:
3737
- uses: actions/checkout@v2
38-
- uses: actions/setup-node@v2.1.5
38+
- uses: actions/setup-node@v2.3.0
3939
with:
4040
node-version: ${{ matrix.node }}
4141
- name: Install Packages
4242
run: npm install
4343
- name: Run Tests
4444
run: npm run test:ci
4545
- name: Coveralls Parallel
46-
uses: coverallsapp/github-action@v1.1.2
46+
uses: coverallsapp/github-action@1.1.3
4747
with:
4848
github-token: ${{ secrets.GITHUB_TOKEN }}
4949
parallel: true
5050
- name: Coveralls Finished
51-
uses: coverallsapp/github-action@v1.1.2
51+
uses: coverallsapp/github-action@1.1.3
5252
with:
5353
github-token: ${{ secrets.GITHUB_TOKEN }}
5454
parallel-finished: true

0 commit comments

Comments
 (0)