Skip to content

Commit 0e2a9b3

Browse files
authored
chore(dependencies): Update all dependencies (#2738)
1 parent 5e8e7c4 commit 0e2a9b3

30 files changed

Lines changed: 1765 additions & 1653 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98

109
strategy:
1110
matrix:
12-
node-version: [14.x, 16.x]
11+
node-version: [14.x, 18.x]
1312

1413
services:
1514
postgres:
@@ -28,21 +27,21 @@ jobs:
2827
--health-retries 5
2928
3029
steps:
31-
- uses: actions/checkout@v2
32-
- name: Use Node.js ${{ matrix.node-version }}
33-
uses: actions/setup-node@v1
34-
with:
35-
node-version: ${{ matrix.node-version }}
36-
- run: npm i npm -g
37-
- run: npm install -g codeclimate-test-reporter
38-
- run: npm install
39-
- run: npm test
40-
env:
41-
CI: true
42-
TEST_DB: postgres
43-
- run: |
44-
if [ "$CODECLIMATE_REPO_TOKEN" != "" ]; then
45-
codeclimate-test-reporter < coverage/lcov.info
46-
fi
47-
env:
48-
CODECLIMATE_REPO_TOKEN: ${{ secrets.codeclimate }}
30+
- uses: actions/checkout@v2
31+
- name: Use Node.js ${{ matrix.node-version }}
32+
uses: actions/setup-node@v1
33+
with:
34+
node-version: ${{ matrix.node-version }}
35+
- run: npm i npm -g
36+
- run: npm install -g codeclimate-test-reporter
37+
- run: npm install
38+
- run: npm test
39+
env:
40+
CI: true
41+
TEST_DB: postgres
42+
- run: |
43+
if [ "$CODECLIMATE_REPO_TOKEN" != "" ]; then
44+
codeclimate-test-reporter < coverage/lcov.info
45+
fi
46+
env:
47+
CODECLIMATE_REPO_TOKEN: ${{ secrets.codeclimate }}
Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
11
name: Update dependencies
22

3-
on:
3+
on:
44
schedule:
55
- cron: '0 0 1 * *'
66
workflow_dispatch:
77
jobs:
88
update-dependencies:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
- name: Use Node.js
13-
uses: actions/setup-node@v1
14-
with:
15-
node-version: '15.x'
16-
- run: npm ci
17-
- run: |
18-
git config user.name "GitHub Actions Bot"
19-
git config user.email "hello@feathersjs.com"
20-
git checkout -b update-dependencies-$GITHUB_RUN_ID
21-
- run: |
22-
npm run update-dependencies
23-
npm install
24-
- run: |
25-
git commit -am "chore(dependencies): Update dependencies"
26-
git push origin update-dependencies-$GITHUB_RUN_ID
27-
- run: |
28-
gh pr create --title "chore(dependencies): Update all dependencies" --body ""
29-
env:
30-
GITHUB_TOKEN: ${{secrets.CI_ACCESS_TOKEN}}
31-
11+
- uses: actions/checkout@v2
12+
- name: Use Node.js
13+
uses: actions/setup-node@v1
14+
with:
15+
node-version: '18.x'
16+
- run: npm ci
17+
- run: |
18+
git config user.name "GitHub Actions Bot"
19+
git config user.email "hello@feathersjs.com"
20+
git checkout -b update-dependencies-$GITHUB_RUN_ID
21+
- run: |
22+
npm run update-dependencies
23+
npm install
24+
- run: |
25+
git commit -am "chore(dependencies): Update dependencies"
26+
git push origin update-dependencies-$GITHUB_RUN_ID
27+
- run: |
28+
gh pr create --title "chore(dependencies): Update all dependencies" --body ""
29+
env:
30+
GITHUB_TOKEN: ${{secrets.CI_ACCESS_TOKEN}}

0 commit comments

Comments
 (0)