Skip to content

Commit

Permalink
Update actions to use Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
deleonenriqueta authored Apr 5, 2024
1 parent 9a8bdfe commit b177d0a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v1.4.3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
- name: Build with Gradle
env:
Expand All @@ -21,4 +22,4 @@ jobs:
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingKeyId: ${{ secrets.SIGNING_KEY_ID }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }}
run: ./gradlew build publish -Prelease=true
run: ./gradlew build publish -Prelease=true

0 comments on commit b177d0a

Please sign in to comment.