This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a commit to branch mvnd-1.x
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git


The following commit(s) were added to refs/heads/mvnd-1.x by this push:
     new bb677ad3 Upgrade to Testcontainers 2.x; fix GH Action OS labels (#1488)
bb677ad3 is described below

commit bb677ad3f4e92a31c9fe3daf17823c2bc8ac4a70
Author: Tamas Cservenak <[email protected]>
AuthorDate: Tue Dec 9 11:30:54 2025 +0100

    Upgrade to Testcontainers 2.x; fix GH Action OS labels (#1488)
    
    Changes:
    * update test deps to use testcontainers 2.x
    * CI fix: align and use proper labels for macOS
---
 .github/workflows/early-access.yaml | 2 +-
 .github/workflows/release.yaml      | 2 +-
 integration-tests/pom.xml           | 2 +-
 pom.xml                             | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/early-access.yaml 
b/.github/workflows/early-access.yaml
index d7c8ef84..7f62569e 100644
--- a/.github/workflows/early-access.yaml
+++ b/.github/workflows/early-access.yaml
@@ -63,7 +63,7 @@ jobs:
       fail-fast: false
       matrix:
         # binaries wanted: linux amd64, mac M1, mac intel, windows x86
-        os: [ ubuntu-latest, macos-latest, macos-13, windows-latest ]
+        os: [ ubuntu-24.04, macos-15, macos-15-intel, windows-2025 ]
     runs-on: ${{ matrix.os }}
 
     steps:
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 4f5ac42e..39d0cd82 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -35,7 +35,7 @@ jobs:
       fail-fast: true
       matrix:
         # binaries wanted: linux amd64, mac intel, mac M1, windows x86
-        os: [ ubuntu-latest, macos-13, macos-14, windows-latest ]
+        os: [ ubuntu-24.04, macos-15-intel, macos-15, windows-2025 ]
     runs-on: ${{ matrix.os }}
 
     steps:
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index 0a61cb99..d61e2fbd 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -87,7 +87,7 @@
     </dependency>
     <dependency>
       <groupId>org.testcontainers</groupId>
-      <artifactId>junit-jupiter</artifactId>
+      <artifactId>testcontainers-junit-jupiter</artifactId>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/pom.xml b/pom.xml
index 814edbaa..46e46510 100644
--- a/pom.xml
+++ b/pom.xml
@@ -104,7 +104,7 @@
     <xstream.version>1.4.21</xstream.version>
     <plexus-interactivity-api.version>1.5.1</plexus-interactivity-api.version>
     <takari-smart-builder.version>1.1.0</takari-smart-builder.version>
-    <testcontainers.version>1.21.3</testcontainers.version>
+    <testcontainers.version>2.0.2</testcontainers.version>
   </properties>
 
   <dependencyManagement>
@@ -354,7 +354,7 @@
       </dependency>
       <dependency>
         <groupId>org.testcontainers</groupId>
-        <artifactId>junit-jupiter</artifactId>
+        <artifactId>testcontainers-junit-jupiter</artifactId>
         <version>${testcontainers.version}</version>
       </dependency>
     </dependencies>

Reply via email to