Skip to content

Bump github.com/aws/aws-sdk-go from 1.45.2 to 1.54.19 #8

Bump github.com/aws/aws-sdk-go from 1.45.2 to 1.54.19

Bump github.com/aws/aws-sdk-go from 1.45.2 to 1.54.19 #8

Workflow file for this run

name: Lint check
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
env:
GITHUB_ACTIONS: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 1 }
- uses: actions/setup-go@v3
with: { go-version: '1.x' }
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53.3
args: -v -c .golangci.yml
only-new-issues: true
prettify:
name: Prettify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 1 }
- name: Install dependencies
run: npm i -g npm@8 && npm i -g prettier
- name: Check markdown files
run: prettier --prose-wrap never --check **/*.md