Skip to content

Commit 3bb3142

Browse files
jaykoreanfacebook-github-bot
authored andcommitted
Upgrade Maven to 3.9.11 (facebook#13779)
Summary: Similar to facebook#13684, the link for version 3.9.10 is broken again, and we are upgrading Maven as part of the fix. This time, we are no longer using the link from https://dlcdn.apache.org/maven/maven-3/ because they occasionally remove versions, which can break our CI at any time. Instead, changing the link to use Apache Archive which should be stable Pull Request resolved: facebook#13779 Test Plan: CI `install-maven` step is now passing - https://github.com/facebook/rocksdb/actions/runs/16328986469/job/46126398150?pr=13779 Reviewed By: krhancoc Differential Revision: D78428965 Pulled By: jaykorean fbshipit-source-id: 9c218f6efbd1188be7847f43be338908efffe002
1 parent 6e4113e commit 3bb3142

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/install-maven/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ runs:
44
steps:
55
- name: Install Maven
66
run: |
7-
wget --no-check-certificate https://dlcdn.apache.org/maven/maven-3/3.9.10/binaries/apache-maven-3.9.10-bin.tar.gz
8-
tar zxf apache-maven-3.9.10-bin.tar.gz
9-
echo "export M2_HOME=$(pwd)/apache-maven-3.9.10" >> $GITHUB_ENV
10-
echo "$(pwd)/apache-maven-3.9.10/bin" >> $GITHUB_PATH
7+
wget --no-check-certificate https://archive.apache.org/dist/maven/maven-3/3.9.11/binaries/apache-maven-3.9.11-bin.tar.gz
8+
tar zxf apache-maven-3.9.11-bin.tar.gz
9+
echo "export M2_HOME=$(pwd)/apache-maven-3.9.11" >> $GITHUB_ENV
10+
echo "$(pwd)/apache-maven-3.9.11/bin" >> $GITHUB_PATH
1111
shell: bash

0 commit comments

Comments
 (0)