From c75793cdabf7b499975112560171fa15b8eb529b Mon Sep 17 00:00:00 2001 From: Izaim Date: Sat, 30 Mar 2024 23:38:49 +0100 Subject: [PATCH] remove old code --- .github/workflows/test_coverage_with_tokens.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test_coverage_with_tokens.yml b/.github/workflows/test_coverage_with_tokens.yml index 66cd62cc..59d34284 100644 --- a/.github/workflows/test_coverage_with_tokens.yml +++ b/.github/workflows/test_coverage_with_tokens.yml @@ -24,6 +24,11 @@ concurrency: # Cancel in-progress runs when a new workflow with the same group name is triggered cancel-in-progress: true +env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} + jobs: test-coverage: runs-on: ubuntu-latest @@ -35,13 +40,6 @@ jobs: steps: - name: Checkout Project uses: actions/checkout@v4 - - - name: Generate Cognito token - id: cognito-token - env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} - name: Setup Python uses: actions/setup-python@v4