Skip to content

Commit

Permalink
Merge pull request #117 from 1c-syntax/dependabot/github_actions/acti…
Browse files Browse the repository at this point in the history
…ons/setup-java-4

Bump actions/setup-java from 1 to 4
  • Loading branch information
nixel2007 authored Nov 16, 2024
2 parents f8c08d6 + b55832b commit 045bec5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java_version }}
distribution: 'temurin'
cache: Gradle
- name: Build with Gradle
run: ./gradlew check --stacktrace
- name: Archive test results
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ jobs:
- run: |
git fetch --prune --unshallow
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: gradle
- name: SonarCloud Scan
run: ./gradlew check sonar
env:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: Gradle
- name: Build with Gradle
run: ./gradlew build
- name: Upload jar to release
Expand Down

0 comments on commit 045bec5

Please sign in to comment.