Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Bump gradle/gradle-build-action from 2 to 3 #592

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
queries: security-and-quality
ram: 4096
- name: Build
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
# codeQL requires a full before/after build to compare results. Caching can result in action failing
#cache-read-only: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Build (Publish snapshots to maven central)
if: ${{ github.ref == 'refs/heads/main'}}
# TODO: Need to extend build to make use of snapshot repo for publishing
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
arguments: |
publish
Expand All @@ -40,7 +40,7 @@ jobs:
# In other cases just build but don't publish
- name: Build (no snapshots)
if: ${{ github.ref != 'refs/heads/main'}}
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
arguments: |
build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- uses: gradle/wrapper-validation-action@v1
- name: Build with Gradle & Release artifacts
# TODO: Need to extend build to make use of release repo for publishing
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
arguments: |
publish
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
distribution: 'temurin'
- uses: gradle/wrapper-validation-action@v1
- name: Build
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
arguments: |
build
Expand Down
Loading