Skip to content

chore(deps): bump github.com/aws/smithy-go from 1.27.9 to 1.28.1 #17132

chore(deps): bump github.com/aws/smithy-go from 1.27.9 to 1.28.1

chore(deps): bump github.com/aws/smithy-go from 1.27.9 to 1.28.1 #17132

Workflow file for this run

name: CodeCov Coverage
permissions:
contents: read
on:
push:
pull_request:
merge_group:
jobs:
build:
runs-on: "${{ vars.RUNS_ON || 'ubuntu-latest' }}"
steps:
# Checkout should always be before setup-go to ensure caching is working
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 2
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version: stable
- name: Run coverage
run: go tool gotestsum --format github-actions --junitfile junit.xml -- -coverprofile=coverage.out -covermode=count ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1.2.1
with:
token: ${{ secrets.CODECOV_TOKEN }}