Skip to content

chore(deps): bump github.com/aws/aws-sdk-go-v2/service/secretsmanager from 1.34.6 to 1.34.7 #50

chore(deps): bump github.com/aws/aws-sdk-go-v2/service/secretsmanager from 1.34.6 to 1.34.7

chore(deps): bump github.com/aws/aws-sdk-go-v2/service/secretsmanager from 1.34.6 to 1.34.7 #50

Workflow file for this run

name: Check make fmt
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
check-make-fmt:
name: Check make fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install go1.21
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Run make fmt
run: make fmt
- name: Check if make fmt generated changes that should be committed
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "Error: make fmt generated changes that should be committed. Please run 'make fmt' and commit the changes."
git diff
git status
exit 1
fi