From 0c626e9af84a20ff7b42dbcfdac8fe84004cb604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Fri, 16 Sep 2022 10:37:24 +0200 Subject: [PATCH 1/3] chore: retire old versions of Go Let's keep only the supported versions (last two minors) --- .github/workflows/ci-podman.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-podman.yml b/.github/workflows/ci-podman.yml index b97b22a82d..7f361949f7 100644 --- a/.github/workflows/ci-podman.yml +++ b/.github/workflows/ci-podman.yml @@ -6,7 +6,7 @@ jobs: build: strategy: matrix: - go-version: [1.16.x, 1.17.x, 1.x] + go-version: [1.18.x, 1.x] runs-on: ubuntu-22.04 steps: - name: Set up Go diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6039f75076..041a4ce1b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: test: strategy: matrix: - go-version: [1.16.x, 1.17.x, 1.x] + go-version: [1.18.x, 1.x] platform: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.platform }} steps: From 5c5b82f95dc56f04ee4e4698fc4733f6f8671a5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Fri, 16 Sep 2022 11:50:43 +0200 Subject: [PATCH 2/3] chore: bump version of Go in go mod files --- e2e/go.mod | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/go.mod b/e2e/go.mod index 79dcbcaeb3..0a2ff074b1 100644 --- a/e2e/go.mod +++ b/e2e/go.mod @@ -1,6 +1,6 @@ module e2e -go 1.13 +go 1.19 require ( github.com/docker/go-connections v0.4.0 diff --git a/go.mod b/go.mod index bb115bffa7..c9e21ab4ff 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/testcontainers/testcontainers-go -go 1.13 +go 1.19 require ( github.com/cenkalti/backoff/v4 v4.1.3 From 2d6fa232c0f2f095ca55e8155432cd514044c9ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Fri, 16 Sep 2022 12:29:03 +0200 Subject: [PATCH 3/3] fix: use lowest version --- e2e/go.mod | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/go.mod b/e2e/go.mod index 0a2ff074b1..deeb4ab76a 100644 --- a/e2e/go.mod +++ b/e2e/go.mod @@ -1,6 +1,6 @@ module e2e -go 1.19 +go 1.18 require ( github.com/docker/go-connections v0.4.0 diff --git a/go.mod b/go.mod index c9e21ab4ff..1a194e86fa 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/testcontainers/testcontainers-go -go 1.19 +go 1.18 require ( github.com/cenkalti/backoff/v4 v4.1.3