Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v4
- run: actions/upload-artifact@v4

# Ensure gradlew has executable permissions
- name: Set execute permission for gradlew
Expand All @@ -45,7 +45,7 @@ jobs:
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
run: gradle/actions/setup-gradle@v4 # v4.0.0

- name: Build with Gradle Wrapper
run: ./gradlew build
Expand All @@ -61,7 +61,7 @@ jobs:

- name: Upload code coverage report as artifact
if: always()
uses: actions/upload-artifact@v4
run: actions/upload-artifact@v4
with:
name: jacoco-report
path: build/reports/jacoco/test/html/
Expand All @@ -78,7 +78,7 @@ jobs:
# If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.
#
- name: Setup Gradle
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
run: gradle/actions/setup-gradle@v4 # v4.0.0
with:
gradle-version: '8.11.1'

Expand Down