Skip to content

Commit

Permalink
ci(gradle): use gradle-build-action for now (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsenave authored Jul 19, 2024
1 parent bd13e7d commit 8775700
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ jobs:
gpg-passphrase: GPG_PASSWORD

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
uses: gradle/gradle-build-action@v3
# Note: the action recommends to switch to gradle/actions/setup-gradle@v3
# but this change makes the publish task fail at initialization of stating repository.

- name: Publish DDI Lifecycle lib on Maven Central
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
java-version: ${{ env.JAVA_VERSION }}

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
uses: gradle/gradle-build-action@v3
# Note: the action recommends to switch to gradle/actions/setup-gradle@v3
# but this change makes the publish task fail at initialization of stating repository.

- name: Get DDI-Lifecycle lib version
id: version-step
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
java-version: ${{ env.JAVA_VERSION }}

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
uses: gradle/gradle-build-action@v3 # Use this action here while it's still use in publishing workflows.

- name: DDI Lifecycle lib tests
run: |
Expand Down

0 comments on commit 8775700

Please sign in to comment.