Skip to content

build(deps): bump github.com/aws/aws-sdk-go from 1.53.2 to 1.53.4 #644

build(deps): bump github.com/aws/aws-sdk-go from 1.53.2 to 1.53.4

build(deps): bump github.com/aws/aws-sdk-go from 1.53.2 to 1.53.4 #644

Workflow file for this run

name: "Build and test"
on:
push:
branches:
- main
pull_request:
paths-ignore:
- '.github/'
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4.1.5
-
name: Docker build
env:
DOCKER_TAG: terraform-registry:latest
run: |
make DOCKER_TAG="${DOCKER_TAG}" build-docker
docker image save ${DOCKER_TAG} -o image.tar
-
name: Trivy vulnerability scan
uses: aquasecurity/trivy-action@0.19.0
with:
input: image.tar
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'