From 266636d3f291a10003a0155838361d1821830c7b Mon Sep 17 00:00:00 2001 From: Chris Gillum Date: Thu, 17 Apr 2025 14:03:46 +0000 Subject: [PATCH] Update supported go versions --- .github/workflows/pr-validation.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index c9271936..e319ced7 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [ '1.22.x', '1.21.x', '1.20.x' ] + go-version: [ '1.24.x', '1.23.x' ] # Boot up a local, clean postgres instance for the postgres tests services: diff --git a/go.mod b/go.mod index 7aeeda8c..5da8c9cc 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/microsoft/durabletask-go -go 1.21 +go 1.23 require ( github.com/cenkalti/backoff/v4 v4.1.3