Skip to content

Commit

Permalink
Update setup Java action (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
attiasas authored May 20, 2024
1 parent 745f8de commit 932d25a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:

# Install required tools
- name: Set up Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: "temurin"
distribution: "zulu"
java-version: "8"

# Run static code analysis
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frogbot-scan-and-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:

# Install prerequisites
- name: Set up Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: "8"
distribution: "adopt"
distribution: "zulu"

- uses: jfrog/frogbot@v2
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frogbot-scan-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:

# Install prerequisites
- name: Set up Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: "8"
distribution: "temurin"
distribution: "zulu"

- uses: jfrog/frogbot@v2
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:

# Install required tools
- name: Set up Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: "temurin"
distribution: "zulu"
java-version: "8"

# Install the plugin to allow running the integration tests
Expand Down

0 comments on commit 932d25a

Please sign in to comment.