From e164cd3e68d8d3eaf409099074826babdbcf0c63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 18:43:20 +0000 Subject: [PATCH] Bump the github_actions group across 1 directory with 4 updates Bumps the github_actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [aws-actions/amazon-ecs-render-task-definition](https://github.com/aws-actions/amazon-ecs-render-task-definition), [actions/setup-node](https://github.com/actions/setup-node) and [sonarsource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action). Updates `actions/checkout` from 6 to 7 - [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...v7) Updates `aws-actions/amazon-ecs-render-task-definition` from 1.8.5 to 1.9.0 - [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/v1.8.5...v1.9.0) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `sonarsource/sonarqube-scan-action` from 8.0.0 to 8.2.1 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/v8.0.0...v8.2.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' 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.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github_actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github_actions - dependency-name: sonarsource/sonarqube-scan-action dependency-version: 8.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github_actions ... Signed-off-by: dependabot[bot] --- .github/workflows/cd.yml | 4 ++-- .github/workflows/ci.yml | 14 +++++++------- .github/workflows/update_knapsack_report.yml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 4e0f5f1c9..d642f7fd7 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -16,7 +16,7 @@ jobs: name: ${{ github.ref == 'refs/heads/main' && 'production' || github.ref_name }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v6 @@ -63,7 +63,7 @@ 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@v1.8.5 + uses: aws-actions/amazon-ecs-render-task-definition@v1.9.0 with: task-definition: ${{ vars.ECS_TASK_DEFINITION_PATH }} container-name: ${{ vars.CONTAINER_NAME }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 413429893..eae00c0a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,11 +40,11 @@ jobs: timeout-minutes: 10 steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Enable Corepack run: corepack enable - name: Setup Node - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' cache: 'yarn' @@ -102,7 +102,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set ENV for API Docs @@ -114,7 +114,7 @@ jobs: - name: Enable Corepack run: corepack enable - name: Setup Node - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' cache: 'yarn' @@ -175,7 +175,7 @@ jobs: needs: tests steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 ssh-key: "${{ secrets.PUSH_KEY }}" @@ -196,14 +196,14 @@ jobs: echo "SONAR_PROJECT_VERSION=$(echo $GITHUB_SHA | cut -c1-8)" >> $GITHUB_ENV echo "SONAR_REPORT_PATHS=$(ls coverage/coverage-*.json | paste -sd "," -)" >> $GITHUB_ENV - name: SonarQube Scanner - uses: sonarsource/sonarqube-scan-action@v8.0.0 + uses: sonarsource/sonarqube-scan-action@v8.2.1 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} - name: Enable Corepack run: corepack enable - name: Setup Node - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' cache: 'yarn' diff --git a/.github/workflows/update_knapsack_report.yml b/.github/workflows/update_knapsack_report.yml index 09fdab43c..428799174 100644 --- a/.github/workflows/update_knapsack_report.yml +++ b/.github/workflows/update_knapsack_report.yml @@ -30,7 +30,7 @@ jobs: RAILS_ENV: test steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: