From 75fd2c351ad518334c4284614e4e638672d69dc6 Mon Sep 17 00:00:00 2001 From: Emilio Garcia Date: Mon, 14 Nov 2022 15:00:04 -0500 Subject: [PATCH] bump nrpgx5 to go version 1.17 to align with EOL policy --- .github/workflows/ci.yaml | 1 + v3/integrations/nrpgx5/go.mod | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fc06d3d15..3bd4e4863 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -190,6 +190,7 @@ jobs: extratesting: go get -u github.com/lib/pq@master - go-version: 1.17.x dirs: v3/integrations/nrpgx5 + extratesting: go get -u github.com/jackc/pgx/v5@master - go-version: 1.17.x dirs: v3/integrations/nrpq/example/sqlx - go-version: 1.17.x diff --git a/v3/integrations/nrpgx5/go.mod b/v3/integrations/nrpgx5/go.mod index 5e8329cfc..318391be1 100644 --- a/v3/integrations/nrpgx5/go.mod +++ b/v3/integrations/nrpgx5/go.mod @@ -1,12 +1,10 @@ module github.com/newrelic/go-agent/v3/integrations/nrpgx5 -go 1.11 +go 1.17 require ( github.com/egon12/pgsnap v0.0.0-20221022154027-2847f0124ed8 - github.com/jackc/pgx/v4 v4.17.2 // indirect github.com/jackc/pgx/v5 v5.0.3 github.com/newrelic/go-agent/v3 v3.20.0 github.com/stretchr/testify v1.8.0 - golang.org/x/crypto v0.1.0 // indirect )