From 4dc1ab3ca525cef715629c2fc20bfc29981b7791 Mon Sep 17 00:00:00 2001 From: Jared Hatfield Date: Wed, 8 Apr 2026 22:57:22 +0000 Subject: [PATCH] Update Go version to 1.26.2 --- .github/workflows/build-go.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-go.yml b/.github/workflows/build-go.yml index 7b6a94b..c64e7f2 100644 --- a/.github/workflows/build-go.yml +++ b/.github/workflows/build-go.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Go uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 with: - go-version: '1.26.1' # GOVERSION + go-version: '1.26.2' # GOVERSION - name: Cache Go modules uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 diff --git a/Dockerfile b/Dockerfile index ad474e7..bb8a5fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use the official Golang image for building the application -FROM golang:1.26.1 AS builder +FROM golang:1.26.2 AS builder # Set the working directory inside the container WORKDIR /app