diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f35c5792c..51fe9c1d2 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -55,7 +55,7 @@ jobs: services: database: - image: postgres:11 + image: postgres:14 env: POSTGRES_DB: ${{ env.DBNAME }} POSTGRES_PASSWORD: ${{ env.PGPASSWORD }} diff --git a/database/Dockerfile b/database/Dockerfile index 9fc591017..f1028e9c8 100644 --- a/database/Dockerfile +++ b/database/Dockerfile @@ -1,4 +1,4 @@ -FROM postgres:11 +FROM postgres:14 # CircleCI does not support mounting folders, so add files directly # https://circleci.com/docs/2.0/building-docker-images/#mounting-folders diff --git a/go.mod b/go.mod index 206efb888..73edb2d09 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/mozilla-services/autograph -go 1.22.5 +go 1.22.1 require ( github.com/DataDog/datadog-go v3.7.2+incompatible