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: