From 19110816e5d7690118da78a00e60ca830725ee9f Mon Sep 17 00:00:00 2001 From: Will Simpson Date: Tue, 16 Jan 2024 12:14:02 -0700 Subject: [PATCH] chore: upgrade to Go 1.21 --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a7bb745..661d2ce 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17 + go-version: 1.21 - name: Test run: | diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 21e401a..8ddc686 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17 + go-version: 1.21 - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 diff --git a/go.mod b/go.mod index 39ae854..2e4eff9 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/etsy/terraform-demux -go 1.17 +go 1.21 require ( github.com/Masterminds/semver/v3 v3.1.1