From 08e8b088143604b761933a2e1041d9924bff7dc6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 18:55:58 +0000 Subject: [PATCH] chore(deps): update go to v1.22.1 (#42) * chore(deps): update go to v1.22.1 * ci: Remove cache key hack --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gabe Cook --- .github/workflows/build.yml | 2 -- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7a2385..5b8e50f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,8 +26,6 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - - name: Change Cache Key - run: echo '// ${{ github.job }}' >> go.sum - name: Set up Go uses: actions/setup-go@v5 with: diff --git a/Dockerfile b/Dockerfile index 6371406..c474afc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ #syntax=docker/dockerfile:1.7 -FROM --platform=$BUILDPLATFORM golang:1.21.4-alpine AS builder +FROM --platform=$BUILDPLATFORM golang:1.22.1-alpine AS builder WORKDIR /app RUN apk add --no-cache git diff --git a/go.mod b/go.mod index ceab345..8bcfb6f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/clevyr/yampl -go 1.21.4 +go 1.22.1 require ( github.com/Masterminds/sprig/v3 v3.2.3