Bump github.com/aws/aws-sdk-go from 1.44.116 to 1.55.6 #961
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
branches: | |
- OSC-MIGRATION | |
paths: | |
- "**.go" | |
- "Dockerfile" | |
- "Makefile" | |
- "go.*" | |
- ".github/workflows/build.yml" | |
- "!tests/**" | |
workflow_dispatch: | |
jobs: | |
Build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Docker Lint | |
run: bash -c "make dockerlint" | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.63 | |
args: --timeout=300s | |
only-new-issues: true | |
- name: Test | |
run: bash -c "make test" | |
- name: Image | |
run: bash -c "make build-image" | |
- name: Check docs | |
run: bash -c "make check-helm-docs" | |
- name: Check manifest | |
run: bash -c "make check-helm-manifest" | |
- name: Trivy-Scan | |
id: trivyscan | |
run: bash -c "make trivy-scan" | |
- name: Upload Scan if errors | |
if: ${{ failure() && github.event_name != 'pull_request' && steps.trivyscan.outcome == 'failure' }} | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: './.trivyscan/report.sarif' |