Bump aws-sdk-cloudwatch from 1.97.0 to 1.107.0 in /dhcp-service/metrics #73
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
DhcpServerTesting: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Compose | |
uses: ndeloof/[email protected] | |
with: | |
version: v2.1.0 # defaults to 'latest' | |
legacy: true # will also install in PATH as `docker-compose` | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: eu-west-2 | |
role-to-assume: arn:aws:iam::683290208331:role/GitHubWorkflow | |
role-session-name: GitHubWorkflow | |
- name: Get AWS DockerHub credentials | |
id: docker_hub_credentials | |
run: | | |
username=$(aws ssm get-parameter --name /moj-network-access-control/docker/username --with-decryption --query "Parameter.Value" --output text) | |
echo "::add-mask::$username" | |
echo "docker-hub-username=$username" >> "$GITHUB_OUTPUT" | |
password=$(aws ssm get-parameter --name /moj-network-access-control/docker/password --with-decryption --query "Parameter.Value" --output text) | |
echo "::add-mask::$password" | |
echo "docker-hub-password=$password" >> "$GITHUB_OUTPUT" | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{steps.docker_hub_credentials.outputs.docker-hub-username}} | |
password: ${{steps.docker_hub_credentials.outputs.docker-hub-password}} | |
- name: Run DHCP tests | |
run: | | |
make build-dev | |
make test |