From 48dd38c87e15db08b6ba063212776cbf4c127a64 Mon Sep 17 00:00:00 2001 From: Alex Hill Date: Thu, 9 Nov 2023 11:04:35 +0000 Subject: [PATCH] update postgres version for build, checkout action, golang version (#23) --- .github/workflows/build-integration.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-integration.yml b/.github/workflows/build-integration.yml index 5223781..146e149 100644 --- a/.github/workflows/build-integration.yml +++ b/.github/workflows/build-integration.yml @@ -12,19 +12,19 @@ jobs: working-directory: "/go/src/github.com/gocardless/pgreplay-go" runs-on: ubuntu-latest container: - image: golang:1.13 + image: golang:1.21.4 env: PGHOST: 127.0.0.1 PGUSER: postgres services: postgres: - image: postgres:11.2 + image: postgres:14 env: POSTGRES_USER: postgres POSTGRES_DB: pgreplay_test POSTGRES_PASSWORD: '' steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.1.1 - name: Install ginkgo test runner run: go get github.com/onsi/ginkgo/ginkgo - name: Install Postgres @@ -40,13 +40,13 @@ jobs: working-directory: "/go/src/github.com/gocardless/pgreplay-go" runs-on: ubuntu-latest container: - image: golang:1.13 + image: golang:1.21.4 env: PGHOST: 127.0.0.1 PGUSER: postgres services: postgres: - image: postgres:11.2 + image: postgres:14 env: POSTGRES_USER: postgres POSTGRES_DB: pgreplay_test