From a13e88d0a03ed0638816b381537a58c44299fe11 Mon Sep 17 00:00:00 2001 From: "Alessandro (Ale) Segala" <43508+ItalyPaleAle@users.noreply.github.com> Date: Sat, 25 Feb 2023 00:29:19 +0000 Subject: [PATCH] Downgrade AWS action in cert/conf tests (#2601) The branch with Node.js 16 seems to not work well. We will live with a version that shows a warning in the meanwhile. Signed-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com> --- .github/workflows/certification.yml | 4 +--- .github/workflows/conformance.yml | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/certification.yml b/.github/workflows/certification.yml index 266d45b5f..c17d68278 100644 --- a/.github/workflows/certification.yml +++ b/.github/workflows/certification.yml @@ -191,9 +191,7 @@ jobs: echo "AWS_SECRET_KEY=${{ secrets.AWS_SECRET_KEY }}" >> $GITHUB_ENV - name: Configure AWS Credentials - # TODO: Remove "v1-node16" when v2 is released - # See: https://github.com/aws-actions/configure-aws-credentials/issues/489 - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v1 if: matrix.require-aws-credentials == 'true' with: aws-access-key-id: "${{ secrets.AWS_ACCESS_KEY }}" diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 3256992fc..48a04110b 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -184,9 +184,7 @@ jobs: - name: Configure AWS Credentials if: matrix.require-aws-credentials == 'true' - # TODO: Remove "v1-node16" when v2 is released - # See: https://github.com/aws-actions/configure-aws-credentials/issues/489 - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v1 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}