Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Bump github.com/aws/aws-sdk-go from 1.46.6 to 1.47.3 #2011

Bump github.com/aws/aws-sdk-go from 1.46.6 to 1.47.3

Bump github.com/aws/aws-sdk-go from 1.46.6 to 1.47.3 #2011

Workflow file for this run

name: Multilinters
on:
push:
paths:
- "**.go"
- "go.*"
jobs:
build:
name: Check code
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.20"]
steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run golangci-lint
uses: golangci/[email protected]
with:
version: v1.51.1
args: --timeout 5m -E bodyclose,gocritic,gofmt,gosec,govet,nestif,nlreturn,revive,rowserrcheck --exclude G401,G501,G107