Skip to content

Commit 8324ce4

Browse files
* Use [email protected] * Try to fix CI failure
1 parent fdcf2fd commit 8324ce4

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,11 @@ jobs:
2222
with:
2323
ref: ${{ github.ref }}
2424

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-
3525
- name: Use Node.js ${{ matrix.node-version }}
3626
uses: actions/setup-node@v4
3727
with:
3828
node-version: ${{ matrix.node-version }}
29+
cache: "yarn"
3930
- env:
4031
CXX: "g++-4.9"
4132
CC: "gcc-4.9"

packages/driver.sqlite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
},
6565
"devDependencies": {
6666
"@sqltools/base-driver": "^0.1.11",
67-
"@types/sqlite3": "^3.1.8",
67+
"@types/sqlite3": "^5.1.0",
6868
"@types/vscode": "^1.72.0",
6969
"concurrently": "^5.2.0",
7070
"cross-env": "^7.0.2",

packages/driver.sqlite/src/ls/driver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { parse as queryParse } from '@sqltools/util/query';
88
import generateId from '@sqltools/util/internal-id';
99
import keywordsCompletion from './keywords';
1010

11-
const SQLite3Version = '5.1.1';
11+
const SQLite3Version = '5.1.7';
1212

1313
export default class SQLite extends AbstractDriver<SQLiteLib.Database, any> implements IConnectionDriver {
1414

0 commit comments

Comments
 (0)