Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

build(deps): bump github.com/aws/aws-sdk-go from 1.50.21 to 1.50.26 #924

build(deps): bump github.com/aws/aws-sdk-go from 1.50.21 to 1.50.26

build(deps): bump github.com/aws/aws-sdk-go from 1.50.21 to 1.50.26 #924

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.21"]
steps:
- uses: actions/setup-go@v5
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/golangci-lint-action@v4.0.0
with:
version: v1.55.2
args: --timeout 5m -E bodyclose,gocritic,gofmt,gosec,govet,nestif,nlreturn,revive,rowserrcheck --exclude G401,G501,G107