Skip to content

Commit

Permalink
chore(ci): bump gradle/actions from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [gradle/actions](https://github.com/gradle/actions) from 3 to 4.
- [Release notes](https://github.com/gradle/actions/releases)
- [Commits](gradle/actions@v3...v4)

---
updated-dependencies:
- dependency-name: gradle/actions
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Aug 5, 2024
1 parent d606f71 commit 8b0884a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: gradle/actions/wrapper-validation@v3
- uses: gradle/actions/wrapper-validation@v4
- name: set-up-jdk
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: build
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4
with:
arguments: ${{ env.GRADLE_SWITCHES }} build test

Expand All @@ -51,7 +51,7 @@ jobs:
distribution: zulu
java-version: 17
- name: publish-snapshots
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4
if: github.event_name == 'push'
timeout-minutes: 30
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/receive-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- uses: gradle/actions/wrapper-validation@v3
- uses: gradle/actions/wrapper-validation@v4
- uses: actions/setup-java@v4
with:
java-version: '21'
Expand All @@ -46,7 +46,7 @@ jobs:

# Execute recipes
- name: Apply OpenRewrite best practices
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4
with:
arguments: ${{ env.GRADLE_SWITCHES }} rewriteRun -Drewrite.activeRecipe=org.openrewrite.recipes.OpenRewriteBestPractices

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
java-version: 17

- name: publish-candidate
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4
if: contains(github.ref, '-rc.')
timeout-minutes: 30
with:
arguments: ${{ env.GRADLE_SWITCHES }} -Preleasing -Prelease.disableGitChecks=true -Prelease.useLastTag=true candidate publish

- name: publish-release
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4
if: (!contains(github.ref, '-rc.'))
timeout-minutes: 30
with:
Expand Down

0 comments on commit 8b0884a

Please sign in to comment.