From 57e910b292c9a81a9a9f072d688b72850351594e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 23:57:13 +0000 Subject: [PATCH] Bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [aws-actions/amazon-ecs-render-task-definition](https://github.com/aws-actions/amazon-ecs-render-task-definition) | `1.8.0` | `1.8.2` | | [aws-actions/amazon-ecs-deploy-task-definition](https://github.com/aws-actions/amazon-ecs-deploy-task-definition) | `2.4.0` | `2.5.1` | | [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/amazon-ecs-render-task-definition` from 1.8.0 to 1.8.2 - [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...06472d439cb66af6210a6709bfc842c26b053706) Updates `aws-actions/amazon-ecs-deploy-task-definition` from 2.4.0 to 2.5.1 - [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...c6e19c08506099e50400581201a3a767fd8e3ff4) 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/amazon-ecs-render-task-definition dependency-version: 1.8.2 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.5.1 dependency-type: direct:production update-type: version-update:semver-minor 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 | 8 ++++---- .github/workflows/deploy-script.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/pr.yml | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/deploy-api.yml b/.github/workflows/deploy-api.yml index 8301cb0..e9ad514 100644 --- a/.github/workflows/deploy-api.yml +++ b/.github/workflows/deploy-api.yml @@ -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@06472d439cb66af6210a6709bfc842c26b053706 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@c6e19c08506099e50400581201a3a767fd8e3ff4 with: task-definition: ${{ steps.task-def.outputs.task-definition }} service: ${{ steps.get-task-def.outputs.service }} @@ -101,7 +101,7 @@ jobs: - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v6 with: node-version: 22 cache: 'pnpm' @@ -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 479924f..e3b1976 100644 --- a/.github/workflows/deploy-script.yml +++ b/.github/workflows/deploy-script.yml @@ -39,7 +39,7 @@ jobs: - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v6 with: node-version: 22 cache: 'pnpm' @@ -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 37a6db2..bbfa318 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: - uses: pnpm/action-setup@v4 - - 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 f6592cf..34d0cd6 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