From d0825f5f4ea55d462fcedb7235910cd25ef750bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 04:15:37 +0000 Subject: [PATCH] Bump the production-dependencies group across 1 directory with 4 updates Bumps the production-dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) and [actions/setup-java](https://github.com/actions/setup-java). Updates `actions/checkout` from 6.0.3 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6.0.3...v7.0.0) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `aws-actions/configure-aws-credentials` from 6.2.0 to 6.2.2 - [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/v6.2.0...6.2.2) Updates `actions/setup-java` from 5.2.0 to 5.5.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v5.2.0...v5.5.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: production-dependencies - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: production-dependencies - dependency-name: actions/setup-java dependency-version: 5.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: aws-actions/configure-aws-credentials dependency-version: 6.2.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-prod.yml | 22 +++++++++++----------- .github/workflows/deploy-qa.yml | 14 +++++++------- .github/workflows/infracost.yml | 4 ++-- .github/workflows/manual-prod.yml | 12 ++++++------ .github/workflows/release.yml | 2 +- 5 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 120cc50d..0f077ba1 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -15,7 +15,7 @@ jobs: timeout-minutes: 15 name: Run Unit Tests steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -31,7 +31,7 @@ jobs: terraform_version: 1.12.2 - name: Restore Yarn Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev @@ -48,7 +48,7 @@ jobs: timeout-minutes: 15 name: Build Application steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -59,7 +59,7 @@ jobs: cache: "yarn" - name: Restore Yarn Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-prod @@ -117,7 +117,7 @@ jobs: - build environment: "AWS QA" steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -133,7 +133,7 @@ jobs: terraform_version: 1.12.2 - name: Restore Yarn Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev @@ -145,7 +145,7 @@ jobs: with: name: build-qa - - uses: aws-actions/configure-aws-credentials@v6.2.0 + - uses: aws-actions/configure-aws-credentials@6.2.2 with: role-to-assume: arn:aws:iam::427040638965:role/GitHubActionsRole role-session-name: Core_QA_Deployment_${{ github.run_id }} @@ -188,7 +188,7 @@ jobs: with: terraform_version: 1.12.2 - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -196,7 +196,7 @@ jobs: uses: actions/download-artifact@v8 with: name: build-prod - - uses: aws-actions/configure-aws-credentials@v6.2.0 + - uses: aws-actions/configure-aws-credentials@6.2.2 with: role-to-assume: arn:aws:iam::298118738376:role/GitHubActionsRole role-session-name: Core_Prod_Deployment_${{ github.run_id }} @@ -221,12 +221,12 @@ jobs: - test-unit - test-e2e steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Set up Node uses: actions/setup-node@v6.4.0 with: node-version: 24.x - - uses: actions/setup-java@v5.2.0 + - uses: actions/setup-java@v5.5.0 with: distribution: 'adopt' java-version: '25' diff --git a/.github/workflows/deploy-qa.yml b/.github/workflows/deploy-qa.yml index d11e2456..f338abc5 100644 --- a/.github/workflows/deploy-qa.yml +++ b/.github/workflows/deploy-qa.yml @@ -15,7 +15,7 @@ jobs: timeout-minutes: 15 name: Run Unit Tests steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -31,7 +31,7 @@ jobs: cache: "yarn" - name: Restore Yarn Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev @@ -49,7 +49,7 @@ jobs: timeout-minutes: 15 name: Build Application steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -60,7 +60,7 @@ jobs: cache: "yarn" - name: Restore Yarn Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev @@ -99,7 +99,7 @@ jobs: - test - build steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -115,7 +115,7 @@ jobs: terraform_version: 1.12.2 - name: Restore Yarn Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev @@ -128,7 +128,7 @@ jobs: with: name: build - - uses: aws-actions/configure-aws-credentials@v6.2.0 + - uses: aws-actions/configure-aws-credentials@6.2.2 with: role-to-assume: arn:aws:iam::427040638965:role/GitHubActionsRole role-session-name: Core_QA_Deployment_${{ github.run_id }} diff --git a/.github/workflows/infracost.yml b/.github/workflows/infracost.yml index 926bcecb..67c9ebce 100644 --- a/.github/workflows/infracost.yml +++ b/.github/workflows/infracost.yml @@ -21,7 +21,7 @@ jobs: api-key: ${{ secrets.INFRACOST_API_KEY }} - name: Checkout base branch - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 with: ref: '${{ github.event.pull_request.base.ref }}' @@ -33,7 +33,7 @@ jobs: --out-file=/tmp/infracost-base.json - name: Checkout PR branch - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 - name: Generate Infracost diff run: | diff --git a/.github/workflows/manual-prod.yml b/.github/workflows/manual-prod.yml index 237aee37..17742137 100644 --- a/.github/workflows/manual-prod.yml +++ b/.github/workflows/manual-prod.yml @@ -17,7 +17,7 @@ jobs: timeout-minutes: 15 name: Run Unit Tests steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -33,7 +33,7 @@ jobs: terraform_version: 1.12.2 - name: Restore Yarn Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev @@ -50,7 +50,7 @@ jobs: timeout-minutes: 15 name: Build Application steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -61,7 +61,7 @@ jobs: cache: "yarn" - name: Restore Yarn Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: node_modules key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-prod @@ -111,7 +111,7 @@ jobs: with: terraform_version: 1.12.2 - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 env: HUSKY: "0" @@ -119,7 +119,7 @@ jobs: uses: actions/download-artifact@v8 with: name: build-prod - - uses: aws-actions/configure-aws-credentials@v6.2.0 + - uses: aws-actions/configure-aws-credentials@6.2.2 with: role-to-assume: arn:aws:iam::298118738376:role/GitHubActionsRole role-session-name: Manual_Core_Prod_Deployment_${{ github.run_id }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2e7f4aa7..864b885c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: private-key: ${{ secrets.AUTOMATED_RELEASE_APP_KEY }} - name: Checkout code - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.0 with: fetch-depth: 2 token: ${{ steps.app-token.outputs.token }}