From 4f2e225e65b1f35b69e63292e3f87b0e8f1e0f9d Mon Sep 17 00:00:00 2001 From: Ryan Schmitt Date: Sat, 21 Jun 2025 19:00:09 -0700 Subject: [PATCH 1/2] Bump mvnw to 3.9.10 --- .mvn/wrapper/maven-wrapper.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties index 1664203f38..7f2674436b 100644 --- a/.mvn/wrapper/maven-wrapper.properties +++ b/.mvn/wrapper/maven-wrapper.properties @@ -14,7 +14,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionSha256Sum=4ec3f26fb1a692473aea0235c300bd20f0f9fe741947c82c1234cefd76ac3a3c +distributionSha256Sum=b917e5e8c9f86a063e621241392f43619f414e68de93c1a6753cd56594cdac40 distributionType=only-script -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip wrapperVersion=3.3.2 From 4b761d0c95b51f05be4d44e36a6391e149c6b544 Mon Sep 17 00:00:00 2001 From: Ryan Schmitt Date: Sat, 21 Jun 2025 19:00:19 -0700 Subject: [PATCH 2/2] Run GH workflows using mvnw --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/maven.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 75551894c9..fed9064c77 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -84,7 +84,7 @@ jobs: # and modify them (or add more) to build your code if your project # uses a compiled language - - run: mvn clean package -DskipTests -Drat.skip=true -Dcheckstyle.skip + - run: ./mvnw clean package -DskipTests -Drat.skip=true -Dcheckstyle.skip - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 6a88469d58..ae2082fe0d 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -49,4 +49,4 @@ jobs: distribution: 'temurin' java-version: ${{ matrix.java }} - name: Build with Maven - run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false -P-use-toolchains,docker + run: ./mvnw -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false -P-use-toolchains,docker