Skip to content

Commit b07cdd5

Browse files
committed
ci: update versions
1 parent 38e5fb1 commit b07cdd5

4 files changed

Lines changed: 2053 additions & 1468 deletions

File tree

.github/workflows/push.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- name: Checkout
9-
uses: actions/checkout@v2
9+
uses: actions/checkout@v6
1010
- name: Setup
11-
uses: actions/setup-node@v2
11+
uses: actions/setup-node@v6
1212
with:
13-
node-version: '18.x'
14-
- uses: actions/cache@v2
13+
node-version: '24.x'
14+
- uses: actions/cache@v5
1515
id: yarn-cache
1616
with:
1717
path: node_modules
@@ -33,7 +33,7 @@ jobs:
3333
POSTGRES_USER: postgres
3434
services:
3535
postgres:
36-
image: postgres:10.8
36+
image: postgres:18.4
3737
env:
3838
POSTGRES_USER: postgres
3939
POSTGRES_PASSWORD: postgres
@@ -44,12 +44,12 @@ jobs:
4444
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@v2
47+
uses: actions/checkout@v6
4848
- name: Setup
49-
uses: actions/setup-node@v2
49+
uses: actions/setup-node@v6
5050
with:
51-
node-version: '18.x'
52-
- uses: actions/cache@v2
51+
node-version: '24.x'
52+
- uses: actions/cache@v5
5353
id: yarn-cache
5454
with:
5555
path: node_modules
@@ -65,19 +65,19 @@ jobs:
6565
run: yarn run migrate
6666
- name: Test
6767
run: yarn test
68-
68+
6969
publish:
7070
name: Publish
7171
needs: test
7272
runs-on: ubuntu-latest
7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v2
75+
uses: actions/checkout@v6
7676
- name: Setup
77-
uses: actions/setup-node@v2
77+
uses: actions/setup-node@v6
7878
with:
79-
node-version: '18.x'
80-
- uses: actions/cache@v2
79+
node-version: '24.x'
80+
- uses: actions/cache@v5
8181
id: yarn-cache
8282
with:
8383
path: node_modules
@@ -94,4 +94,4 @@ jobs:
9494
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
9595
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9696
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
97-
run: yarn release
97+
run: yarn release

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@
5050
"@commitlint/config-conventional": "^17.4.4",
5151
"@semantic-release/git": "^10.0.1",
5252
"@types/chai": "^4.3.4",
53-
"@types/mocha": "^10.0.1",
53+
"@types/mocha": "^10.0.10",
5454
"@types/node": "^18.15.3",
5555
"@typescript-eslint/eslint-plugin": "^5.55.0",
5656
"@typescript-eslint/parser": "^5.55.0",
57-
"adminjs": "^7.0.0",
57+
"adminjs": "^7.8.17",
5858
"chai": "^4.3.7",
5959
"class-validator": "^0.14.0",
6060
"eslint": "^8.36.0",
@@ -64,13 +64,13 @@
6464
"eslint-plugin-react": "^7.32.2",
6565
"eslint-plugin-react-hooks": "^4.6.0",
6666
"husky": "^4.2.5",
67-
"mocha": "^10.2.0",
67+
"mocha": "^11.7.6",
6868
"pg": "^8.10.0",
6969
"semantic-release": "^20.1.3",
7070
"semantic-release-slack-bot": "^4.0.0",
71-
"ts-node": "^10.9.1",
71+
"ts-node": "^10.9.2",
7272
"tsconfig-paths": "^4.1.2",
7373
"typeorm": "^0.3.12",
74-
"typescript": "^4.9.5"
74+
"typescript": "^6.0.3"
7575
}
7676
}

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
"module": "nodenext",
55
"target": "esnext",
66
"lib": ["esnext", "DOM"],
7+
"types": ["node", "mocha"],
8+
"strict": false,
79
"skipLibCheck": true,
810
"sourceMap": true,
911
"noImplicitAny": false,

0 commit comments

Comments
 (0)