Skip to content

Bump github.com/aws/aws-sdk-go-v2 from 1.43.0 to 1.45.1 #223

Bump github.com/aws/aws-sdk-go-v2 from 1.43.0 to 1.45.1

Bump github.com/aws/aws-sdk-go-v2 from 1.43.0 to 1.45.1 #223

Workflow file for this run

name: Lint, format and check the code for typos
# Lint runs `make lint`
#
# This workflow is run on every pull request and push to main.
#
# To run this locally, simply run `make lint` from the root of the repo.
on:
pull_request:
merge_group:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
lint:
name: lint
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- id: filter
uses: dorny/paths-filter@v4
with:
filters: |
code:
- '**/*.go'
- 'Makefile'
- 'go.*'
- '.golangci.yml'
- '.github/workflows/lint.yml'
- run: echo "GO_VERSION=$(cat .github/workflows/go-version.env | grep GO_VERSION | cut -d '=' -f2)" >> $GITHUB_ENV
if: steps.filter.outputs.code == 'true' && hashFiles('go.mod') != ''
- uses: actions/setup-go@v7
if: steps.filter.outputs.code == 'true' && hashFiles('go.mod') != ''
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint kms
if: steps.filter.outputs.code == 'true' && hashFiles('go.mod') != ''
run: make lint