Skip to content

Commit eeebbf7

Browse files
authored
Use aes.Cipher as the default to sqlite.New (#9)
* Use aes.Cipher as the default to sqlite.New. * Upgrade dependencies.
1 parent 415aa62 commit eeebbf7

File tree

4 files changed

+51
-191
lines changed

4 files changed

+51
-191
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v2
2020
with:
21-
go-version: '1.22'
21+
go-version: '1.23'
2222

2323
- name: Unit tests
2424
run: go test -coverprofile=cover.out ./...
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Modver
3232
if: ${{ github.event_name == 'pull_request' }}
33-
uses: bobg/modver@v2.8.0
33+
uses: bobg/modver@v2.11.0
3434
with:
3535
github_token: ${{ secrets.GITHUB_TOKEN }}
3636
pull_request_url: https://github.com/${{ github.repository }}/pull/${{ github.event.number }}

go.mod

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
module github.com/bobg/encid
22

3-
go 1.21
3+
go 1.23.0
44

55
require (
6-
github.com/bobg/basexx/v2 v2.0.1
7-
github.com/bobg/errors v1.0.0
8-
github.com/bobg/subcmd/v2 v2.2.2
9-
github.com/mattn/go-sqlite3 v1.14.22
10-
github.com/pressly/goose/v3 v3.18.0
6+
github.com/bobg/basexx/v2 v2.1.0
7+
github.com/bobg/errors v1.1.0
8+
github.com/bobg/subcmd/v2 v2.3.0
9+
github.com/mattn/go-sqlite3 v1.14.30
10+
github.com/pressly/goose/v3 v3.24.3
1111
)
1212

1313
require (
14-
github.com/bobg/go-generics/v2 v2.2.2 // indirect
14+
github.com/google/go-cmp v0.6.0 // indirect
1515
github.com/mfridman/interpolate v0.0.2 // indirect
1616
github.com/pkg/errors v0.9.1 // indirect
17-
github.com/sethvargo/go-retry v0.2.4 // indirect
17+
github.com/sethvargo/go-retry v0.3.0 // indirect
1818
go.uber.org/multierr v1.11.0 // indirect
19-
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
20-
golang.org/x/sync v0.6.0 // indirect
19+
golang.org/x/sync v0.16.0 // indirect
2120
)

0 commit comments

Comments
 (0)