Skip to content

Commit

Permalink
Merge pull request #57 from offa/update_ci
Browse files Browse the repository at this point in the history
Update GH Actions
  • Loading branch information
kurasu authored Oct 2, 2023
2 parents 1651bf0 + 158c788 commit 5818a71
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 15
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 15
distribution: 'temurin'
- name: Build with Maven
run: mvn -B package --file pom.xml

0 comments on commit 5818a71

Please sign in to comment.