Upgrade sqlite driver

This commit is contained in:
Jinzhu 2021-11-23 14:04:31 +08:00
parent e0c089497f
commit ff26c82306
2 changed files with 6 additions and 2 deletions

View File

@ -6,6 +6,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
golangci_lint_flags: '--enable-all --exclude-use-default=false'

View File

@ -4,11 +4,13 @@ go 1.14
require (
github.com/google/uuid v1.3.0
github.com/jackc/pgx/v4 v4.14.0 // indirect
github.com/jinzhu/now v1.1.3
github.com/lib/pq v1.10.4
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871 // indirect
gorm.io/driver/mysql v1.2.0
gorm.io/driver/postgres v1.2.2
gorm.io/driver/sqlite v1.2.4
gorm.io/driver/sqlite v1.2.6
gorm.io/driver/sqlserver v1.2.1
gorm.io/gorm v1.22.3
)