File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
build :
13
- runs-on : ubuntu-20.04
13
+ runs-on : ubuntu-latest
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
18
18
- name : Setup Node.js environment
19
- uses : actions/setup-node@v1.4.4
19
+ uses : actions/setup-node@v3
20
20
with :
21
- node-version : ' 14.16.1 '
21
+ node-version : 16
22
22
23
23
- name : Install npm dependencies
24
24
run : npm ci
@@ -27,19 +27,20 @@ jobs:
27
27
run : npm run test:cov
28
28
29
29
- name : Codacy Coverage Reporter
30
- uses : codacy/codacy-coverage-reporter-action@0.2.0
30
+ uses : codacy/codacy-coverage-reporter-action@v1
31
31
with :
32
32
project-token : ${{ secrets.CODACY_TOKEN }}
33
33
34
34
- name : Setup PostgreSQL
35
- uses : Harmon758/postgresql-action@v1.0.0
35
+ uses : Harmon758/postgresql-action@v1
36
36
with :
37
37
postgresql db : vrt_db_dev
38
38
postgresql user : postgres
39
39
postgresql password : postgres
40
40
41
+ # FIXME: This action is unmaintained.
41
42
- name : Wait untill DB started (workaround of https://github.com/Harmon758/postgresql-action/issues/7)
42
- uses : jakejarvis/wait-action@v0.1.0
43
+ uses : jakejarvis/wait-action@v0.1.1
43
44
with :
44
45
time : ' 5s'
45
46
You can’t perform that action at this time.
0 commit comments