Skip to content

Commit a3fcbfd

Browse files
committed
mod: update pgx to fix dependabot issues
upgrade gopkg.in/yaml to latest stable
1 parent b9d70d9 commit a3fcbfd

3 files changed

Lines changed: 62 additions & 48 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
POSTGRES_URL: postgres://postgres:migrator@postgres:5432/migrator?sslmode=disable
2525
MYSQL_URL: root:migrator@tcp(mysql:3306)/migrator
2626
run: |
27+
sleep 10
2728
docker compose exec -T migrator make test POSTGRES_URL="${POSTGRES_URL}" MYSQL_URL="${MYSQL_URL}"
2829
docker compose cp migrator:/go/src/github.com/lopezator/migrator/coverage.txt .
2930
- name: coverage

go.mod

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,18 @@ go 1.17
44

55
require (
66
github.com/go-sql-driver/mysql v1.4.1
7-
github.com/jackc/pgx/v4 v4.9.0
7+
github.com/jackc/pgx/v4 v4.15.0
88
)
99

1010
require (
1111
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
12-
github.com/jackc/pgconn v1.7.0 // indirect
12+
github.com/jackc/pgconn v1.11.0 // indirect
1313
github.com/jackc/pgio v1.0.0 // indirect
1414
github.com/jackc/pgpassfile v1.0.0 // indirect
15-
github.com/jackc/pgproto3/v2 v2.0.5 // indirect
15+
github.com/jackc/pgproto3/v2 v2.2.0 // indirect
1616
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
17-
github.com/jackc/pgtype v1.5.0 // indirect
18-
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
19-
golang.org/x/text v0.3.3 // indirect
20-
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
17+
github.com/jackc/pgtype v1.10.0 // indirect
18+
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
19+
golang.org/x/text v0.3.6 // indirect
2120
google.golang.org/appengine v1.4.0 // indirect
2221
)

0 commit comments

Comments
 (0)