-
-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update glebarez/sqlite and gorm.io/gorm package and add dependab…
…ot.yml to .github (#198) * chore: update glebarez/sqlite and gorm.io/gorm version Signed-off-by: Gaius <[email protected]> * chore: add dependabot.yml to .github Signed-off-by: Gaius <[email protected]> * chore: update golang version to 1.20 Signed-off-by: Gaius <[email protected]> --------- Signed-off-by: Gaius <[email protected]>
- Loading branch information
Showing
4 changed files
with
69 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,9 +40,9 @@ jobs: | |
|
||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.16 | ||
go-version: '1.20' | ||
|
||
- uses: actions/checkout@v2 | ||
- name: Run Unit tests | ||
|
@@ -66,4 +66,4 @@ jobs: | |
npm install --save-dev [email protected] | ||
npx semantic-release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,48 @@ | ||
module github.com/casbin/gorm-adapter/v3 | ||
|
||
go 1.14 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/casbin/casbin/v2 v2.55.1 | ||
github.com/glebarez/sqlite v1.5.0 | ||
github.com/glebarez/sqlite v1.7.0 | ||
github.com/go-sql-driver/mysql v1.6.0 | ||
github.com/lib/pq v1.10.2 | ||
github.com/stretchr/testify v1.8.0 | ||
gorm.io/driver/mysql v1.4.1 | ||
gorm.io/driver/postgres v1.4.4 | ||
gorm.io/driver/sqlserver v1.4.1 | ||
gorm.io/gorm v1.24.0 | ||
gorm.io/gorm v1.24.5 | ||
gorm.io/plugin/dbresolver v1.3.0 | ||
) | ||
|
||
require ( | ||
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/glebarez/go-sqlite v1.20.3 // indirect | ||
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect | ||
github.com/golang-sql/sqlexp v0.1.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgconn v1.13.0 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgproto3/v2 v2.3.1 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect | ||
github.com/jackc/pgtype v1.12.0 // indirect | ||
github.com/jackc/pgx/v4 v4.17.2 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/microsoft/go-mssqldb v0.17.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230126093431-47fa9a501578 // indirect | ||
golang.org/x/crypto v0.0.0-20221005025214-4161e89ecf1b // indirect | ||
golang.org/x/sys v0.4.0 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
modernc.org/libc v1.22.2 // indirect | ||
modernc.org/mathutil v1.5.0 // indirect | ||
modernc.org/memory v1.5.0 // indirect | ||
modernc.org/sqlite v1.20.3 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters