From add3b78f51b2e99485981edfb2fe302c5c5485f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 19:20:05 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 7 updates Bumps the github-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `5` | `6` | | [aws-actions/amazon-ecs-render-task-definition](https://github.com/aws-actions/amazon-ecs-render-task-definition) | `1.8.0` | `1.8.4` | | [aws-actions/amazon-ecs-deploy-task-definition](https://github.com/aws-actions/amazon-ecs-deploy-task-definition) | `2.4.0` | `2.6.0` | | [pnpm/action-setup](https://github.com/pnpm/action-setup) | `4` | `5` | | [actions/setup-node](https://github.com/actions/setup-node) | `5` | `6` | | [mongodb/atlas-github-action](https://github.com/mongodb/atlas-github-action) | `0.2.1` | `0.2.2` | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | Updates `aws-actions/configure-aws-credentials` from 5 to 6 - [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/v5...v6) Updates `aws-actions/amazon-ecs-render-task-definition` from 1.8.0 to 1.8.4 - [Release notes](https://github.com/aws-actions/amazon-ecs-render-task-definition/releases) - [Changelog](https://github.com/aws-actions/amazon-ecs-render-task-definition/blob/master/CHANGELOG.md) - [Commits](https://github.com/aws-actions/amazon-ecs-render-task-definition/compare/5cb8c74c1b1ecaec4c8ea82eff82c009333509ce...77954e213ba1f9f9cb016b86a1d4f6fcdea0d57e) Updates `aws-actions/amazon-ecs-deploy-task-definition` from 2.4.0 to 2.6.0 - [Release notes](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/releases) - [Changelog](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/blob/master/CHANGELOG.md) - [Commits](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/compare/1beffbdddb3eb5f83c7a746c3e9bafeccdccbbaa...cbf54ec46642b86ff78c2f5793da6746954cf8ff) Updates `pnpm/action-setup` from 4 to 5 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v4...v5) Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v5...v6) Updates `mongodb/atlas-github-action` from 0.2.1 to 0.2.2 - [Release notes](https://github.com/mongodb/atlas-github-action/releases) - [Commits](https://github.com/mongodb/atlas-github-action/compare/v0.2.1...v0.2.2) Updates `actions/checkout` from 5 to 6 - [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/v5...v6) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/amazon-ecs-render-task-definition dependency-version: 1.8.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: aws-actions/amazon-ecs-deploy-task-definition dependency-version: 2.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: pnpm/action-setup dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: mongodb/atlas-github-action dependency-version: 0.2.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-api.yml | 14 +++++++------- .github/workflows/deploy-script.yml | 8 ++++---- .github/workflows/lint.yml | 4 ++-- .github/workflows/pr.yml | 6 +++--- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/deploy-api.yml b/.github/workflows/deploy-api.yml index 8301cb07..857a2697 100644 --- a/.github/workflows/deploy-api.yml +++ b/.github/workflows/deploy-api.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@main - name: Assume AWS Role - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: role-to-assume: ${{ secrets.AWS_ROLE_ARN }} aws-region: us-east-1 @@ -78,14 +78,14 @@ jobs: - name: Fill in the new image ID in the Amazon ECS task definition id: task-def - uses: aws-actions/amazon-ecs-render-task-definition@5cb8c74c1b1ecaec4c8ea82eff82c009333509ce + uses: aws-actions/amazon-ecs-render-task-definition@77954e213ba1f9f9cb016b86a1d4f6fcdea0d57e with: task-definition: ${{ steps.get-task-def.outputs.definition }} container-name: ${{ steps.get-task-def.outputs.name }} image: ${{ needs.build-api.outputs.image }} - name: Deploy Amazon ECS task definition - uses: aws-actions/amazon-ecs-deploy-task-definition@1beffbdddb3eb5f83c7a746c3e9bafeccdccbbaa + uses: aws-actions/amazon-ecs-deploy-task-definition@cbf54ec46642b86ff78c2f5793da6746954cf8ff with: task-definition: ${{ steps.task-def.outputs.task-definition }} service: ${{ steps.get-task-def.outputs.service }} @@ -99,9 +99,9 @@ jobs: - name: 'Checkout GitHub Action' uses: actions/checkout@main - - uses: pnpm/action-setup@v4 + - uses: pnpm/action-setup@v5 - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v6 with: node-version: 22 cache: 'pnpm' @@ -111,7 +111,7 @@ jobs: run: pnpm install - name: Assume AWS Role - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: role-to-assume: ${{ secrets.AWS_ROLE_ARN }} aws-region: us-east-1 @@ -136,7 +136,7 @@ jobs: echo "ip_address=$(curl https://checkip.amazonaws.com)" >> "$GITHUB_OUTPUT" - name: Setup MongoDB Atlas cli - uses: mongodb/atlas-github-action@v0.2.1 + uses: mongodb/atlas-github-action@v0.2.2 - name: Add runner IP to MongoDB access list shell: bash diff --git a/.github/workflows/deploy-script.yml b/.github/workflows/deploy-script.yml index 479924f1..18c373e3 100644 --- a/.github/workflows/deploy-script.yml +++ b/.github/workflows/deploy-script.yml @@ -37,9 +37,9 @@ jobs: - name: 'Checkout GitHub Action' uses: actions/checkout@main - - uses: pnpm/action-setup@v4 + - uses: pnpm/action-setup@v5 - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v6 with: node-version: 22 cache: 'pnpm' @@ -49,7 +49,7 @@ jobs: run: pnpm install - name: Assume AWS Role - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: role-to-assume: ${{ secrets.AWS_ROLE_ARN }} aws-region: us-east-1 @@ -74,7 +74,7 @@ jobs: echo "ip_address=$(curl https://checkip.amazonaws.com)" >> "$GITHUB_OUTPUT" - name: Setup MongoDB Atlas cli - uses: mongodb/atlas-github-action@v0.2.1 + uses: mongodb/atlas-github-action@v0.2.2 - name: Add runner IP to MongoDB access list shell: bash diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 37a6db2b..bc83e1fc 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,9 +15,9 @@ jobs: - name: 'Checkout GitHub Action' uses: actions/checkout@main - - uses: pnpm/action-setup@v4 + - uses: pnpm/action-setup@v5 - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v6 with: node-version: 20 cache: 'pnpm' diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index f6592cfb..34d0cd66 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check PR labels id: check_labels @@ -50,7 +50,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check PR assignee id: check_assignee @@ -86,7 +86,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check PR title id: check_title