Skip to content

Commit

Permalink
Merge pull request Shabinder#1008 from Goooler/action
Browse files Browse the repository at this point in the history
Bump setup-java actions to v2
  • Loading branch information
Shabinder authored Jan 30, 2022
2 parents 010182e + 48b8f9e commit a3705be
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- uses: actions/setup-java@v1.4.3
- uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
java-version: 8
- name: Build Web App
run: ./gradlew :web-app:build
- name: Upload Static Web App Artifact
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-and-publish-kjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ jobs:

# Setup Java 1.8 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 15

# Check out current repository
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/build-release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ jobs:
steps:
# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 15

# Check out current repository
Expand Down Expand Up @@ -44,8 +45,9 @@ jobs:
steps:
# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 15

# Check out current repository
Expand Down Expand Up @@ -92,8 +94,9 @@ jobs:
steps:
# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 15

# Check out current repository
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 15

# Check out current repository
Expand Down

0 comments on commit a3705be

Please sign in to comment.