chore: bump github actions deps

Update github actions modules.

Signed-off-by: Serge Logvinov <serge.logvinov@sinextra.dev>
This commit is contained in:
Serge Logvinov
2023-08-06 10:52:09 +03:00
committed by Serge
parent bc879ab871
commit 8076eee523
3 changed files with 4 additions and 2 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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