Skip to content

Commit

Permalink
Fix. Upgrade setup-java action
Browse files Browse the repository at this point in the history
  • Loading branch information
mohan-13 authored Jun 21, 2024
1 parent 95ca141 commit da2d86f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tomcat_build_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '1.8'
distribution: "corretto"
java-version: "8"
- name: Generate Artifact for bahmni-embedded-tomcat
run: ./gradlew :bahmni-embedded-tomcat:clean :bahmni-embedded-tomcat:build
- name: Configure AWS Credentials
Expand All @@ -47,10 +47,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '17'
distribution: "corretto"
java-version: "17"
- name: Generate Artifact for bahmni-embedded-tomcat-10
run: mvn clean package -f bahmni-embedded-tomcat-10/pom.xml
- name: Configure AWS Credentials
Expand Down

0 comments on commit da2d86f

Please sign in to comment.