Bump github.com/aws/aws-sdk-go-v2/service/sts from 1.18.5 to 1.25.0 #71
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: spot-interrupter e2e tests | |
on: [pull_request_target, workflow_dispatch] | |
jobs: | |
approve: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Approve | |
run: echo Pull requests require approval before running any automated CI. | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
needs: [approve] | |
environment: | |
name: Pull Request Integration | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 'stable' | |
check-latest: true | |
- name: Integration Test | |
run: make e2e-test | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_SESSION_TOKEN: ${{ secrets.AWS_SESSION_TOKEN }} |