From 8076eee5233f140e5fae91a9aa02de7bf049634f Mon Sep 17 00:00:00 2001 From: Serge Logvinov Date: Sun, 6 Aug 2023 10:52:09 +0300 Subject: [PATCH] chore: bump github actions deps Update github actions modules. Signed-off-by: Serge Logvinov --- .github/workflows/charts.yaml | 2 +- .golangci.yml | 2 ++ Dockerfile | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/charts.yaml b/.github/workflows/charts.yaml index e8ececc..21d0303 100644 --- a/.github/workflows/charts.yaml +++ b/.github/workflows/charts.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Unshallow run: git fetch --prune --unshallow diff --git a/.golangci.yml b/.golangci.yml index 32d794a..1c89ab2 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -21,6 +21,7 @@ run: # no need to include all autogenerated files, we confidently recognize # autogenerated files. If it's not please let us know. skip-files: + - charts/ - docs/ # list of build tags, all linters use it. Default is empty list. @@ -131,6 +132,7 @@ linters-settings: linters: enable-all: true disable: + - depguard - errorlint - exhaustruct - exhaustivestruct diff --git a/Dockerfile b/Dockerfile index 04c2268..413da5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax = docker/dockerfile:1.4 ######################################## -FROM --platform=${BUILDPLATFORM} golang:1.20.6-alpine3.18 AS builder +FROM --platform=${BUILDPLATFORM} golang:1.20.7-alpine3.18 AS builder RUN apk update && apk add --no-cache make ENV GO111MODULE on WORKDIR /src