Skip to content

chore(deps): bump github.com/aws/aws-sdk-go from 1.50.35 to 1.54.2 #1191

chore(deps): bump github.com/aws/aws-sdk-go from 1.50.35 to 1.54.2

chore(deps): bump github.com/aws/aws-sdk-go from 1.50.35 to 1.54.2 #1191

Workflow file for this run

name: Go
on:
push:
branches:
- "master"
paths:
- '**.go'
- '**.yaml'
- '**.mod'
pull_request:
paths:
- '**.go'
- '**.yaml'
- '**.mod'
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
id: go
- name: Run test
run: make test
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.54
- name: Upload coverage report
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
flags: unittests
name: codecov-umbrella