-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ACS-6282 Try installing Maven before java
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,11 @@ jobs: | |
fetch-depth: 0 | ||
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | ||
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | ||
- name: "Install Maven" | ||
uses: sdkman/sdkman-action@b1f9b696c79148b66d3d3a06f7ea801820318d0f | ||
with: | ||
candidate: maven | ||
version: "3.8.8" | ||
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | ||
- name: "Install required software" | ||
run: | | ||
|
@@ -71,11 +76,6 @@ jobs: | |
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | ||
sudo apt-get update | ||
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin git zip unzip python3 -y | ||
- name: "Install Maven" | ||
uses: sdkman/sdkman-action@b1f9b696c79148b66d3d3a06f7ea801820318d0f | ||
with: | ||
candidate: maven | ||
version: "3.8.8" | ||
- name: "Login to Docker Hub" | ||
uses: docker/[email protected] | ||
with: | ||
|