We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 890047f commit 23dc4d4Copy full SHA for 23dc4d4
.github/workflows/daily-branch-verification.yml
@@ -21,6 +21,14 @@ jobs:
21
java-version: '17'
22
distribution: 'adopt'
23
24
+ # Step 3: Install Maven 3.9.9
25
+ - name: Install Maven 3.9.9
26
+ run: |
27
+ wget https://downloads.apache.org/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.tar.gz
28
+ tar -xvzf apache-maven-3.9.9-bin.tar.gz
29
+ sudo mv apache-maven-3.9.9 /opt/maven
30
+ echo "export PATH=/opt/maven/bin:$PATH" >> $GITHUB_ENV
31
+
32
- name: Get list of branches
33
id: get-branches
34
run: |
0 commit comments