build(deps): bump github.com/aws/aws-sdk-go from 1.44.245 to 1.51.32 #126
Workflow file for this run
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: ECS integration tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
GO_VERSION: 1.19 | |
jobs: | |
ecs-tests: | |
name: ECS e2e tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Build for ECS e2e tests | |
run: make -f builder.Makefile cli | |
- name: create aws config folder | |
run: mkdir -p ~/.aws | |
- name: ECS e2e Test | |
env: | |
AWS_DEFAULT_REGION: us-west-2 | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }} | |
run: make e2e-ecs |