Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-gradle-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
build-gradle-project:
env:
IMAGE_TAG: 1.10.0
IMAGE_TAG: 1.11.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check the version declared in build.gradle

# Expected: Should show version='1.10.0' (indicating mismatch with IMAGE_TAG: 1.11.0)
rg -n "version\s*=\s*['\"]" build.gradle

Repository: KPMP/hydra-data

Length of output: 78


Update build.gradle version to match IMAGE_TAG: 1.11.0.

The IMAGE_TAG is being set to 1.11.0, but build.gradle still declares version='1.10.0'. This creates a mismatch where the Docker image tag will not match the artifact version inside the container. Update build.gradle to version='1.11.0' to keep them synchronized.

runs-on: ubuntu-latest
steps:
- name: Get branch names
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group='kingstonduo'
version='1.10.0'
version='1.11.0'


apply plugin: 'java'
Expand Down
Loading