Skip to content

Chore(deps): Bump github.com/aws/smithy-go from 1.27.6 to 1.28.1 #18542

Chore(deps): Bump github.com/aws/smithy-go from 1.27.6 to 1.28.1

Chore(deps): Bump github.com/aws/smithy-go from 1.27.6 to 1.28.1 #18542

Workflow file for this run

---
name: VMProxy
on:
pull_request:
paths-ignore:
- "admin/**"
- "agent/**"
- "api-tests/**"
- "dev/docs/**"
- "documentation/**"
- "dashboards/**"
- "managed/**"
- "qan-api2/**"
- "ui/**"
permissions:
contents: read
jobs:
test:
name: Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ github.workspace }}/vmproxy
steps:
- name: Check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Go
uses: ./.github/actions/setup-go
- name: Build and install
run: make install
- name: Run tests
run: make test-cover
- name: Upload coverage results
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
files: cover.out
flags: vmproxy
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
- name: Run debug commands on failure
if: ${{ failure() }}
run: |
env | sort
go env | sort
git status