From 0027d7871899b1258a3142310f9648aab3974e91 Mon Sep 17 00:00:00 2001 From: Nadav Strahilevitz Date: Thu, 9 May 2024 15:32:22 +0300 Subject: [PATCH] fix: performance yaml (#4036) 1. Downgrade AWS authentication v3 (see https://github.com/aws-actions/configure-aws-credentials/issues/862) 2. Add missing needs label to the benchmark job --- .github/workflows/performance.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/performance.yaml b/.github/workflows/performance.yaml index be2fcdcfc7d8..5df472ed1e2b 100644 --- a/.github/workflows/performance.yaml +++ b/.github/workflows/performance.yaml @@ -19,7 +19,7 @@ jobs: runs-on: [self-hosted, perf] steps: - name: AWS Authentication - uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 + uses: aws-actions/configure-aws-credentials@50ac8dd1e1b10d09dac7b8727528b91bed831ac0 # v3.0.2 env: AWS_PROFILE: ${{ secrets.AWS_PROFILE }} with: @@ -40,10 +40,12 @@ jobs: docker push $PR_REPO:$GITHUB_SHA network-benchmark: name: Network Performance Gate + needs: + - publish-pr-image runs-on: [self-hosted, perf] steps: - name: AWS Authentication - uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 + uses: aws-actions/configure-aws-credentials@50ac8dd1e1b10d09dac7b8727528b91bed831ac0 # v3.0.2 env: AWS_PROFILE: ${{ secrets.AWS_PROFILE }} with: