Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Use [email protected]

* Try to fix CI failure
  • Loading branch information
gjsjohnmurray authored Feb 17, 2025
1 parent fdcf2fd commit 8324ce4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,11 @@ jobs:
with:
ref: ${{ github.ref }}

- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
'!**/.vscode-test'
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- env:
CXX: "g++-4.9"
CC: "gcc-4.9"
Expand Down
2 changes: 1 addition & 1 deletion packages/driver.sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
},
"devDependencies": {
"@sqltools/base-driver": "^0.1.11",
"@types/sqlite3": "^3.1.8",
"@types/sqlite3": "^5.1.0",
"@types/vscode": "^1.72.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/driver.sqlite/src/ls/driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { parse as queryParse } from '@sqltools/util/query';
import generateId from '@sqltools/util/internal-id';
import keywordsCompletion from './keywords';

const SQLite3Version = '5.1.1';
const SQLite3Version = '5.1.7';

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

Expand Down

0 comments on commit 8324ce4

Please sign in to comment.