Skip to content

Commit 126a27e

Browse files
dependabot[bot]gnodetclaude
authored
Bump eu.maveniverse.maven.mimir:testing from 0.11.2 to 0.11.4 (#12067)
* Bump eu.maveniverse.maven.mimir:testing from 0.11.2 to 0.11.4 Bumps [eu.maveniverse.maven.mimir:testing](https://github.com/maveniverse/mimir) from 0.11.2 to 0.11.4. - [Release notes](https://github.com/maveniverse/mimir/releases) - [Commits](maveniverse/mimir@release-0.11.2...release-0.11.4) --- updated-dependencies: - dependency-name: eu.maveniverse.maven.mimir:testing dependency-version: 0.11.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Align MIMIR_VERSION with testing dependency Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Add cross-reference comments between mimir versions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Add CI check for Mimir version alignment between pom.xml and workflow Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Guillaume Nodet <gnodet@gmail.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 19bd49f commit 126a27e

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

.github/workflows/maven.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ concurrency:
3232
permissions: {}
3333

3434
env:
35-
MIMIR_VERSION: 0.11.2
35+
# Keep in sync with mimir testing version in pom.xml
36+
MIMIR_VERSION: 0.11.4
3637
MIMIR_BASEDIR: ~/.mimir
3738
MIMIR_LOCAL: ~/.mimir/local
3839
MAVEN_OPTS: -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=./target/java_heapdump.hprof
@@ -53,6 +54,15 @@ jobs:
5354
with:
5455
persist-credentials: false
5556

57+
- name: Verify Mimir version alignment
58+
shell: bash
59+
run: |
60+
POM_VERSION=$(grep -A2 'eu.maveniverse.maven.mimir' pom.xml | grep '<version>' | sed 's/.*<version>\(.*\)<\/version>.*/\1/')
61+
if [ "$POM_VERSION" != "${{ env.MIMIR_VERSION }}" ]; then
62+
echo "::error::MIMIR_VERSION (${{ env.MIMIR_VERSION }}) does not match pom.xml ($POM_VERSION) — update MIMIR_VERSION in this workflow"
63+
exit 1
64+
fi
65+
5666
- name: Prepare Mimir for Maven 3.x
5767
shell: bash
5868
run: |

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,10 +697,11 @@ under the License.
697697
<artifactId>jmh-generator-annprocess</artifactId>
698698
<version>${jmhVersion}</version>
699699
</dependency>
700+
<!-- Keep version in sync with MIMIR_VERSION in .github/workflows/maven.yml -->
700701
<dependency>
701702
<groupId>eu.maveniverse.maven.mimir</groupId>
702703
<artifactId>testing</artifactId>
703-
<version>0.11.2</version>
704+
<version>0.11.4</version>
704705
</dependency>
705706
</dependencies>
706707
<!--bootstrap-start-comment-->

0 commit comments

Comments
 (0)