Skip to content

Bump org.springframework.boot:spring-boot-starter-data-redis from 3.3.0 to 3.5.6 in /ecr - #554

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/ecr/org.springframework.boot-spring-boot-starter-data-redis-3.5.6
Closed

Bump org.springframework.boot:spring-boot-starter-data-redis from 3.3.0 to 3.5.6 in /ecr#554
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/ecr/org.springframework.boot-spring-boot-starter-data-redis-3.5.6

Bump org.springframework.boot:spring-boot-starter-data-redis in /ecr

e6ffce3
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed Sep 18, 2025 in 5m 40s

Build Failed

The build failed.

Details

This is a normal build for the dependabot/maven/ecr/org.springframework.boot-spring-boot-starter-data-redis-3.5.6 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has two jobs, running in two sequential stages.

Stage 1: npm-test

This stage passed.

Job Python OS State
2758.1 3.8 Linux passed

Stage 2: mvn-test

This stage failed.

Job JDK OS State
2758.2 openjdk17 Linux failed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Python Version 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "python": [
    "3.8"
  ],
  "services": [
    "docker"
  ],
  "cache": {
    "directories": [
      "$HOME/.cache/yarn",
      "node_modules",
      ".next/cache"
    ]
  },
  "before_install": [
    "mkdir -vp ~/.docker/cli-plugins/",
    "curl --silent -L \"https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-amd64\" > ~/.docker/cli-plugins/docker-buildx",
    "chmod a+x ~/.docker/cli-plugins/docker-buildx",
    "docker buildx version",
    "GIT_TAG=$(git tag -l --contains HEAD 2>&1)",
    "export TAG=${GIT_TAG:-$TRAVIS_COMMIT}"
  ],
  "install": [
    "cd $TRAVIS_BUILD_DIR",
    "./bin/install_ci_dependencies.sh"
  ],
  "jobs": {
    "include": [
      {
        "stage": "npm-test",
        "script": [
          "cd $TRAVIS_BUILD_DIR/vsm-app",
          "npm install",
          "export FHIR_CDR_URL=https://placeholder.com/fhir",
          "export NEXT_PUBLIC_VSAC_BASE_URL=https://cts.nlm.nih.gov/fhir",
          "npm run build",
          "npm ci && npm run test-ci"
        ],
        "install": [
          "skip"
        ]
      },
      {
        "stage": "mvn-test",
        "jdk": "openjdk17",
        "language": "java",
        "script": [
          "./bin/test_plugin.sh"
        ],
        "install": [
          "skip"
        ]
      },
      {
        "stage": "build-and-deploy-plugin",
        "if": "branch IN (main) or tag IS present",
        "jdk": "openjdk17",
        "language": "java",
        "script": [
          "./bin/build_plugin.sh"
        ]
      },
      {
        "stage": "e2e-test",
        "if": "branch IN (main) or tag IS present",
        "script": [
          "cd ./pw-e2e",
          "npm install",
          "npx playwright install chromium --with-deps",
          "npx playwright test"
        ]
      },
      {
        "stage": "deploy",
        "if": "branch IN (main) or tag IS present",
        "script": [
          "cd $TRAVIS_BUILD_DIR/vsm-app",
          "docker build -t ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/vsm-app:${TAG} -t ${PROD_AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/ecr-sandbox-app:${TAG}-vsm .",
          "cd ../",
          "./bin/deploy.sh"
        ]
      }
    ]
  }
}