Skip to content

Commit da5bf8b

Browse files
dependabot[bot]gnodetclaude
authored
Bump eu.maveniverse.maven.mimir:testing from 0.11.3 to 0.11.4 (#12140)
* Bump eu.maveniverse.maven.mimir:testing from 0.11.3 to 0.11.4 Bumps [eu.maveniverse.maven.mimir:testing](https://github.com/maveniverse/mimir) from 0.11.3 to 0.11.4. - [Release notes](https://github.com/maveniverse/mimir/releases) - [Commits](maveniverse/mimir@release-0.11.3...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 6753e1d commit da5bf8b

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.3
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
@@ -678,10 +678,11 @@ under the License.
678678
<artifactId>jmh-generator-annprocess</artifactId>
679679
<version>${jmhVersion}</version>
680680
</dependency>
681+
<!-- Keep version in sync with MIMIR_VERSION in .github/workflows/maven.yml -->
681682
<dependency>
682683
<groupId>eu.maveniverse.maven.mimir</groupId>
683684
<artifactId>testing</artifactId>
684-
<version>0.11.3</version>
685+
<version>0.11.4</version>
685686
</dependency>
686687
</dependencies>
687688
<!--bootstrap-start-comment-->

0 commit comments

Comments
 (0)