From 5d02e8bfe6e1dceef12b8d526d47a0345e61333a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 15:24:16 +0100 Subject: [PATCH] Bump library/golang from 1.21.6-alpine to 1.22.0-alpine (#13) * Bump library/golang from 1.21.6-alpine to 1.22.0-alpine Bumps library/golang from 1.21.6-alpine to 1.22.0-alpine. --- updated-dependencies: - dependency-name: library/golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Update project to Go 1.22 --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kalle Fagerberg --- .github/workflows/eclint.yml | 2 +- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/eclint.yml b/.github/workflows/eclint.yml index 85aa025..e3ca5b8 100644 --- a/.github/workflows/eclint.yml +++ b/.github/workflows/eclint.yml @@ -16,7 +16,7 @@ jobs: - name: Setup go uses: actions/setup-go@v5 with: - go-version: '>=1.21.0' + go-version-file: go.mod - name: Install eclint run: go install gitlab.com/greut/eclint/cmd/eclint@v0.5.0 diff --git a/Dockerfile b/Dockerfile index a2acff6..54d8b47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: CC0-1.0 -FROM docker.io/library/golang:1.21.6-alpine AS build +FROM docker.io/library/golang:1.22.0-alpine AS build WORKDIR /opt/ri-forward-webhook COPY go.mod go.sum . diff --git a/go.mod b/go.mod index c180c6b..acf97e1 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ module github.com/RiskIdent/ri-forward-webhook -go 1.21.6 +go 1.22.0 require ( github.com/gin-gonic/gin v1.9.1