diff --git a/.github/workflows/build-go.yml b/.github/workflows/build-go.yml index 1d1fb52..275966d 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.3' # GOVERSION + go-version: '1.26.4' # GOVERSION - name: Cache Go modules uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 diff --git a/Dockerfile b/Dockerfile index 4bb56a6..a68e01a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use the official Golang image for building the application -FROM golang:1.26.3 AS builder +FROM golang:1.26.4 AS builder # Set the working directory inside the container WORKDIR /app