From d6421c7ef3a773f9580098dc4445203752dde987 Mon Sep 17 00:00:00 2001 From: Jeevanandam M Date: Sun, 1 Sep 2024 14:24:45 -0700 Subject: [PATCH] build: update go minimum version to go1.21 --- .github/workflows/ci.yml | 2 +- .github/workflows/label-actions.yml | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2449a72e..1418b535 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: name: Build strategy: matrix: - go: [ 'stable', '1.19.x' ] + go: [ 'stable', '1.21.x' ] os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} diff --git a/.github/workflows/label-actions.yml b/.github/workflows/label-actions.yml index a3ab38f2..03b67098 100644 --- a/.github/workflows/label-actions.yml +++ b/.github/workflows/label-actions.yml @@ -12,7 +12,7 @@ jobs: build: strategy: matrix: - go: [ 'stable', '1.19.x' ] + go: [ 'stable', '1.21.x' ] os: [ ubuntu-latest ] name: Run Build diff --git a/go.mod b/go.mod index f2533ee7..c7064d45 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/go-resty/resty/v3 -go 1.19 +go 1.21 require ( golang.org/x/net v0.27.0