Skip to content

Commit 5c6873c

Browse files
committed
Update GitHub Actions tool versions and keep them consistent
1 parent 9ea3a5c commit 5c6873c

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/workflow.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717

1818
- name: Setup Node.js environment
19-
uses: actions/setup-node@v1.4.4
19+
uses: actions/setup-node@v3
2020
with:
21-
node-version: '14.16.1'
21+
node-version: 16
2222

2323
- name: Install npm dependencies
2424
run: npm ci
@@ -27,19 +27,20 @@ jobs:
2727
run: npm run test:cov
2828

2929
- name: Codacy Coverage Reporter
30-
uses: codacy/codacy-coverage-reporter-action@0.2.0
30+
uses: codacy/codacy-coverage-reporter-action@v1
3131
with:
3232
project-token: ${{ secrets.CODACY_TOKEN }}
3333

3434
- name: Setup PostgreSQL
35-
uses: Harmon758/postgresql-action@v1.0.0
35+
uses: Harmon758/postgresql-action@v1
3636
with:
3737
postgresql db: vrt_db_dev
3838
postgresql user: postgres
3939
postgresql password: postgres
4040

41+
# FIXME: This action is unmaintained.
4142
- 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
4344
with:
4445
time: '5s'
4546

0 commit comments

Comments
 (0)