Skip to content

Commit cc268cb

Browse files
authored
chore(deps): update Maven to 3.9.12 in integ tests (aws#8513)
We should probably have this in a variable or something, but just updating this directly for now
1 parent c914f97 commit cc268cb

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,27 +149,27 @@ jobs:
149149
# Remove system Maven if it exists
150150
sudo apt-get remove -y maven || true
151151
152-
# Install Maven 3.9.11
153-
wget https://dlcdn.apache.org/maven/maven-3/3.9.11/binaries/apache-maven-3.9.11-bin.zip -P /tmp
152+
# Install Maven 3.9.12
153+
wget https://dlcdn.apache.org/maven/maven-3/3.9.12/binaries/apache-maven-3.9.12-bin.zip -P /tmp
154154
sudo unzip -d /opt/mvn /tmp/apache-maven-*.zip
155155
156156
# Install Gradle 9.2.0
157157
wget https://services.gradle.org/distributions/gradle-9.2.0-bin.zip -P /tmp
158158
sudo unzip -d /opt/gradle /tmp/gradle-*.zip
159159
160160
# Create symlinks to ensure our Maven is used
161-
sudo ln -sf /opt/mvn/apache-maven-3.9.11/bin/mvn /usr/local/bin/mvn
161+
sudo ln -sf /opt/mvn/apache-maven-3.9.12/bin/mvn /usr/local/bin/mvn
162162
sudo ln -sf /opt/gradle/gradle-9.2.0/bin/gradle /usr/local/bin/gradle
163163
164164
# Add to PATH (prepend to ensure our versions are used first)
165-
echo "/opt/mvn/apache-maven-3.9.11/bin" >> $GITHUB_PATH
165+
echo "/opt/mvn/apache-maven-3.9.12/bin" >> $GITHUB_PATH
166166
echo "/opt/gradle/gradle-9.2.0/bin" >> $GITHUB_PATH
167167
168168
# Set MAVEN_HOME
169-
echo "MAVEN_HOME=/opt/mvn/apache-maven-3.9.11" >> $GITHUB_ENV
169+
echo "MAVEN_HOME=/opt/mvn/apache-maven-3.9.12" >> $GITHUB_ENV
170170
171171
# Verify versions
172-
export PATH="/opt/mvn/apache-maven-3.9.11/bin:/opt/gradle/gradle-9.2.0/bin:$PATH"
172+
export PATH="/opt/mvn/apache-maven-3.9.12/bin:/opt/gradle/gradle-9.2.0/bin:$PATH"
173173
mvn --version
174174
gradle --version
175175

appveyor-linux-binary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ install:
4646
- sh: "ls /usr/"
4747
# install latest maven which is compatible with jdk17
4848
- sh: "sudo apt-get -y remove maven"
49-
- sh: "wget https://dlcdn.apache.org/maven/maven-3/3.9.11/binaries/apache-maven-3.9.11-bin.zip -P /tmp"
49+
- sh: "wget https://dlcdn.apache.org/maven/maven-3/3.9.12/binaries/apache-maven-3.9.12-bin.zip -P /tmp"
5050
- sh: "sudo unzip -d /opt/mvn /tmp/apache-maven-*.zip"
51-
- sh: "PATH=/opt/mvn/apache-maven-3.9.11/bin:$PATH"
51+
- sh: "PATH=/opt/mvn/apache-maven-3.9.12/bin:$PATH"
5252
- sh: "mvn --version"
5353

5454
- sh: "source ${HOME}/venv${PYTHON_VERSION}/bin/activate"

appveyor-ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ install:
5858
- sh: "ls /usr/"
5959
# install latest maven which is compatible with jdk17
6060
- sh: "sudo apt-get -y remove maven"
61-
- sh: "wget https://dlcdn.apache.org/maven/maven-3/3.9.11/binaries/apache-maven-3.9.11-bin.zip -P /tmp"
61+
- sh: "wget https://dlcdn.apache.org/maven/maven-3/3.9.12/binaries/apache-maven-3.9.12-bin.zip -P /tmp"
6262
- sh: "sudo unzip -d /opt/mvn /tmp/apache-maven-*.zip"
63-
- sh: "PATH=/opt/mvn/apache-maven-3.9.11/bin:$PATH"
63+
- sh: "PATH=/opt/mvn/apache-maven-3.9.12/bin:$PATH"
6464
- sh: "mvn --version"
6565

6666
# Finch Runtime Setup (Steps 1-7)

0 commit comments

Comments
 (0)