From a2998129f9866d30bcc89d2a3b0d8017ad107d14 Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Wed, 11 Dec 2024 14:03:36 +1100 Subject: [PATCH] Upgrade the version of Go to 1.24 --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/davecheney/httpstat?shareId=XXXX-XXXX-XXXX-XXXX). --- .github/workflows/push.yml | 2 +- README.md | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 397001d..18a9c00 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -13,7 +13,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: 1.20.x + go-version: 1.24.x - name: Checkout code uses: actions/checkout@v2 - name: Test diff --git a/README.md b/README.md index 00c5edd..7a30866 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Imitation is the sincerest form of flattery. But seriously, https://github.com/reorx/httpstat is the new hotness, and this is a shameless rip off. ## Installation -`httpstat` requires Go 1.20 or later. +`httpstat` requires Go 1.24 or later. ``` go install github.com/davecheney/httpstat@latest ``` diff --git a/go.mod b/go.mod index 13d4f4f..e8d5618 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/davecheney/httpstat -go 1.20 +go 1.24 require github.com/fatih/color v1.14.1