build(deps): bump github.com/aws/aws-sdk-go from 1.54.2 to 1.54.4 #1056
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Check Commit | |
jobs: | |
check_commit: | |
name: Check Commit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.18.0' | |
- name: install checkers | |
run: | | |
go get honnef.co/go/tools/cmd/staticcheck | |
go get golang.org/x/lint/golint | |
go get github.com/client9/misspell/cmd/misspell | |
- name: check | |
run: make check |