diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 619d74fe2..6eb084e92 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -122,7 +122,7 @@ jobs: - name: Build functions run: GOARCH=${{ matrix.architecture }} ./build.sh ${{ matrix.architecture }} working-directory: ${{ matrix.language }} - - uses: aws-actions/configure-aws-credentials@v4.0.2 + - uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} role-duration-seconds: 7200 diff --git a/.github/workflows/docker-build-lambda-soak.yml b/.github/workflows/docker-build-lambda-soak.yml index ed59bd587..3d194a8ce 100644 --- a/.github/workflows/docker-build-lambda-soak.yml +++ b/.github/workflows/docker-build-lambda-soak.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v4.0.2 + uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} role-duration-seconds: 1200 diff --git a/.github/workflows/main-build-java.yml b/.github/workflows/main-build-java.yml index 04fce3276..f8b3cbbb4 100644 --- a/.github/workflows/main-build-java.yml +++ b/.github/workflows/main-build-java.yml @@ -102,7 +102,7 @@ jobs: restore-keys: | ${{ runner.os }}-gradle- - - uses: aws-actions/configure-aws-credentials@v4.0.2 + - uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} role-duration-seconds: 7200 diff --git a/.github/workflows/main-build-nodejs.yml b/.github/workflows/main-build-nodejs.yml index 42e2d927c..7137b0043 100644 --- a/.github/workflows/main-build-nodejs.yml +++ b/.github/workflows/main-build-nodejs.yml @@ -44,7 +44,7 @@ jobs: key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-node- - - uses: aws-actions/configure-aws-credentials@v4.0.2 + - uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} role-duration-seconds: 7200 diff --git a/.github/workflows/main-build-python.yml b/.github/workflows/main-build-python.yml index 29266ff77..a078879ad 100644 --- a/.github/workflows/main-build-python.yml +++ b/.github/workflows/main-build-python.yml @@ -44,7 +44,7 @@ jobs: key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-pip- - - uses: aws-actions/configure-aws-credentials@v4.0.2 + - uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} role-duration-seconds: 7200 diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index 503285e05..d8acfdebf 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -46,7 +46,7 @@ jobs: if: ${{ matrix.language == 'dotnet' }} with: dotnet-version: '6.0.405' - - uses: aws-actions/configure-aws-credentials@v4.0.2 + - uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} role-duration-seconds: 7200 diff --git a/.github/workflows/publish-status.yml b/.github/workflows/publish-status.yml index 5762e3cd5..e83ddd6d8 100644 --- a/.github/workflows/publish-status.yml +++ b/.github/workflows/publish-status.yml @@ -37,7 +37,7 @@ jobs: contents: read steps: - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v4.0.2 + uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.roleArn }} aws-region: ${{ inputs.region }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 085a7b0b7..b6291ca40 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: architecture: ${{ fromJson(github.event.inputs.architecture) }} aws_region: ${{ fromJson(github.event.inputs.aws_region) }} steps: - - uses: aws-actions/configure-aws-credentials@v4.0.2 + - uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} role-duration-seconds: 1200 @@ -64,7 +64,7 @@ jobs: URL=$(aws lambda get-layer-version-by-arn --arn ${{ env.LAYER_ARN }} --query Content.Location --output text) curl $URL -o layer.zip # switch to prod - - uses: aws-actions/configure-aws-credentials@v4.0.2 + - uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.PROD_LAMBDA_ROLE_ARN }} role-duration-seconds: 1200 @@ -296,7 +296,7 @@ jobs: - name: Build functions run: GOARCH=${{ matrix.architecture }} ./build.sh ${{ matrix.architecture }} working-directory: ${{ env.TEST_LANGUAGE }} - - uses: aws-actions/configure-aws-credentials@v4.0.2 + - uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} role-duration-seconds: 1200 diff --git a/.github/workflows/soaking.yml b/.github/workflows/soaking.yml index 673c1b042..d484199f4 100644 --- a/.github/workflows/soaking.yml +++ b/.github/workflows/soaking.yml @@ -127,7 +127,7 @@ jobs: if: ${{ matrix.language == 'dotnet' }} with: dotnet-version: '6.0.405' - - uses: aws-actions/configure-aws-credentials@v4.0.2 + - uses: aws-actions/configure-aws-credentials@v4.1.0 with: role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} mask-aws-account-id: false