From 496e0463328aa9c41e745ac1df35b03b6d491f81 Mon Sep 17 00:00:00 2001 From: Jared Hatfield Date: Fri, 10 Jul 2026 00:55:55 +0000 Subject: [PATCH] Update Go version to v1.26.5 --- .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 77ef739..2414f16 100644 --- a/.github/workflows/build-go.yml +++ b/.github/workflows/build-go.yml @@ -27,7 +27,7 @@ jobs: - name: Set up Go uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 with: - go-version: '1.26.4' # GOVERSION + go-version: '1.26.5' # GOVERSION - name: Cache Go modules uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 diff --git a/Dockerfile b/Dockerfile index a68e01a..c7b6559 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use the official Golang image for building the application -FROM golang:1.26.4 AS builder +FROM golang:1.26.5 AS builder # Set the working directory inside the container WORKDIR /app