From abfe15e6b37c32cc8c87fdbd52e2fc4531a4a6a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 21:30:27 +0000 Subject: [PATCH 1/2] Bump golang from 1.21-alpine to 1.22-alpine Bumps golang from 1.21-alpine to 1.22-alpine. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6d0be0d7..3cf6f0bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Copyright 2021 - Offen Authors # SPDX-License-Identifier: MPL-2.0 -FROM golang:1.21-alpine as builder +FROM golang:1.22-alpine as builder WORKDIR /app COPY . . From ccc9ba217651f973161d2ab376e403355e904a78 Mon Sep 17 00:00:00 2001 From: Frederik Ring Date: Fri, 16 Feb 2024 20:34:30 +0100 Subject: [PATCH 2/2] Update go version in mod file and lint action --- .github/workflows/golangci-lint.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index e2119b77..197dae69 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' cache: false - name: golangci-lint uses: golangci/golangci-lint-action@v3 diff --git a/go.mod b/go.mod index 20755c14..cedbb00a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/offen/docker-volume-backup -go 1.21 +go 1.22 require ( github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1