File tree Expand file tree Collapse file tree 3 files changed +3
-12
lines changed Expand file tree Collapse file tree 3 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -22,20 +22,11 @@ jobs:
22
22
with :
23
23
ref : ${{ github.ref }}
24
24
25
- - uses : actions/cache@v4
26
- id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
27
- with :
28
- path : |
29
- ${{ steps.yarn-cache-dir-path.outputs.dir }}
30
- '!**/.vscode-test'
31
- key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
32
- restore-keys : |
33
- ${{ runner.os }}-yarn-
34
-
35
25
- name : Use Node.js ${{ matrix.node-version }}
36
26
uses : actions/setup-node@v4
37
27
with :
38
28
node-version : ${{ matrix.node-version }}
29
+ cache : " yarn"
39
30
- env :
40
31
CXX : " g++-4.9"
41
32
CC : " gcc-4.9"
Original file line number Diff line number Diff line change 64
64
},
65
65
"devDependencies" : {
66
66
"@sqltools/base-driver" : " ^0.1.11" ,
67
- "@types/sqlite3" : " ^3 .1.8 " ,
67
+ "@types/sqlite3" : " ^5 .1.0 " ,
68
68
"@types/vscode" : " ^1.72.0" ,
69
69
"concurrently" : " ^5.2.0" ,
70
70
"cross-env" : " ^7.0.2" ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { parse as queryParse } from '@sqltools/util/query';
8
8
import generateId from '@sqltools/util/internal-id' ;
9
9
import keywordsCompletion from './keywords' ;
10
10
11
- const SQLite3Version = '5.1.1 ' ;
11
+ const SQLite3Version = '5.1.7 ' ;
12
12
13
13
export default class SQLite extends AbstractDriver < SQLiteLib . Database , any > implements IConnectionDriver {
14
14
You can’t perform that action at this time.
0 commit comments