From de62e0be5f872becbfb3312fb485214767f2806e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 03:56:42 +0000 Subject: [PATCH] chore(deps): bump the actions-deps group with 3 updates Bumps the actions-deps group with 3 updates: [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials), [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) and [aws/aws-durable-execution-conformance-tests/.github/workflows/opentelemetry-orchestrator.yml](https://github.com/aws/aws-durable-execution-conformance-tests). Updates `aws-actions/configure-aws-credentials` from 6.2.3 to 6.2.4 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/e6de054238d6b7531b4efff3b6587d9aade6a06c...cbe3b392738ccf3f987d68400dafcf4b0624a56c) Updates `docker/setup-qemu-action` from 4.2.0 to 4.3.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/96fe6ef7f33517b61c61be40b68a1882f3264fb8...1f40c72289eff860ee54a304f1438e3cff362e0a) Updates `aws/aws-durable-execution-conformance-tests/.github/workflows/opentelemetry-orchestrator.yml` from b8ca81f11aa28e7f7b77ad96a6d323ce10b5f21f to c31f95f448a4fe8ffb93203c7920a48e87362801 - [Release notes](https://github.com/aws/aws-durable-execution-conformance-tests/releases) - [Commits](https://github.com/aws/aws-durable-execution-conformance-tests/compare/b8ca81f11aa28e7f7b77ad96a6d323ce10b5f21f...c31f95f448a4fe8ffb93203c7920a48e87362801) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-version: 6.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-deps - dependency-name: docker/setup-qemu-action dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps - dependency-name: aws/aws-durable-execution-conformance-tests/.github/workflows/opentelemetry-orchestrator.yml dependency-version: c31f95f448a4fe8ffb93203c7920a48e87362801 dependency-type: direct:production dependency-group: actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/cloud-tests.yml | 2 +- .github/workflows/conformance-tests.yml | 2 +- .github/workflows/ecr-release.yml | 6 +++--- .github/workflows/lambda-layer-publish.yml | 2 +- .github/workflows/opentelemetry-conformance-tests.yml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cloud-tests.yml b/.github/workflows/cloud-tests.yml index bab3ce58..d6710ddb 100644 --- a/.github/workflows/cloud-tests.yml +++ b/.github/workflows/cloud-tests.yml @@ -53,7 +53,7 @@ jobs: - name: Configure AWS credentials if: github.event_name != 'workflow_dispatch' || github.actor != 'nektos/act' - uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3 + uses: aws-actions/configure-aws-credentials@cbe3b392738ccf3f987d68400dafcf4b0624a56c # v6.2.4 with: role-to-assume: "${{ secrets.TEST_ROLE_ARN }}" role-session-name: pythonTestingLibraryGitHubIntegrationTest diff --git a/.github/workflows/conformance-tests.yml b/.github/workflows/conformance-tests.yml index c2f589c8..b3ab24ae 100644 --- a/.github/workflows/conformance-tests.yml +++ b/.github/workflows/conformance-tests.yml @@ -73,7 +73,7 @@ jobs: python-version: "3.14" - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3 + uses: aws-actions/configure-aws-credentials@cbe3b392738ccf3f987d68400dafcf4b0624a56c # v6.2.4 with: role-to-assume: "${{ secrets.TEST_ROLE_ARN }}" role-session-name: pythonConformanceTest diff --git a/.github/workflows/ecr-release.yml b/.github/workflows/ecr-release.yml index bc4ebe73..11a0990d 100644 --- a/.github/workflows/ecr-release.yml +++ b/.github/workflows/ecr-release.yml @@ -46,7 +46,7 @@ jobs: - name: Set up QEMU for multi-platform builds if: matrix.arch == 'arm64' - uses: docker/setup-qemu-action@96fe6ef7f33517b61c61be40b68a1882f3264fb8 # v4.2.0 + uses: docker/setup-qemu-action@1f40c72289eff860ee54a304f1438e3cff362e0a # v4.3.0 with: platforms: arm64 @@ -62,7 +62,7 @@ jobs: echo "VERSION=${VERSION}" >> "$GITHUB_OUTPUT" - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3 + uses: aws-actions/configure-aws-credentials@cbe3b392738ccf3f987d68400dafcf4b0624a56c # v6.2.4 with: role-to-assume: ${{ secrets.ECR_UPLOAD_IAM_ROLE_ARN }} aws-region: ${{ env.aws_region }} @@ -93,7 +93,7 @@ jobs: needs: [build-and-upload-image-to-ecr] steps: - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3 + uses: aws-actions/configure-aws-credentials@cbe3b392738ccf3f987d68400dafcf4b0624a56c # v6.2.4 with: role-to-assume: ${{ secrets.ECR_UPLOAD_IAM_ROLE_ARN }} aws-region: ${{ env.aws_region }} diff --git a/.github/workflows/lambda-layer-publish.yml b/.github/workflows/lambda-layer-publish.yml index 593ff96a..a1e0dcf5 100644 --- a/.github/workflows/lambda-layer-publish.yml +++ b/.github/workflows/lambda-layer-publish.yml @@ -206,7 +206,7 @@ jobs: path: dist/ - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3 + uses: aws-actions/configure-aws-credentials@cbe3b392738ccf3f987d68400dafcf4b0624a56c # v6.2.4 with: role-to-assume: ${{ secrets.LAYER_PUBLISH_ROLE_ARN }} role-session-name: otelLayerPublish diff --git a/.github/workflows/opentelemetry-conformance-tests.yml b/.github/workflows/opentelemetry-conformance-tests.yml index 1507a308..6087337a 100644 --- a/.github/workflows/opentelemetry-conformance-tests.yml +++ b/.github/workflows/opentelemetry-conformance-tests.yml @@ -58,7 +58,7 @@ jobs: actions: write contents: read id-token: write - uses: aws/aws-durable-execution-conformance-tests/.github/workflows/opentelemetry-orchestrator.yml@b8ca81f11aa28e7f7b77ad96a6d323ce10b5f21f + uses: aws/aws-durable-execution-conformance-tests/.github/workflows/opentelemetry-orchestrator.yml@c31f95f448a4fe8ffb93203c7920a48e87362801 with: language: python resource_prefix: p