From 499ccc1d2a51bfba62ed5080701229b7a426e743 Mon Sep 17 00:00:00 2001 From: Ryan Fowler Date: Tue, 7 Apr 2026 16:04:57 -0700 Subject: [PATCH] Upgrade Go to v1.26.2 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.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 e72195f..1f37760 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: branches: ["main"] env: - GO_VERSION: "1.26.1" + GO_VERSION: "1.26.2" jobs: check: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f429e9d..0353592 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ on: types: [published] env: - GO_VERSION: "1.26.1" + GO_VERSION: "1.26.2" jobs: release: diff --git a/go.mod b/go.mod index 89fc8e5..e639093 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ryanfowler/fetch -go 1.26.1 +go 1.26.2 require ( github.com/coder/websocket v1.8.14