Skip to content
Open
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/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ updates:
interval: "monthly"
ignore:
- dependency-name: "gradle/actions/setup-gradle"
versions: [">= 6.0.0, < 7.0.0"]
versions: [">= 6.0.0, < 6.1.0"]
groups:
dependencies:
patterns:
Expand Down
22 changes: 17 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ jobs:
distribution: "temurin"
cache: gradle

# Use the open-source basic cache provider
- name: Set up Gradle
uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0
id: setup-gradle
with:
Comment on lines +35 to +37
Copy link

Copilot AI Apr 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The step id: setup-gradle is introduced here but isn’t referenced anywhere in this workflow (no ${{ steps.setup-gradle.* }} usages). Consider removing the id to avoid implying downstream outputs are used.

Copilot uses AI. Check for mistakes.
cache-provider: basic

- name: Test and Build with Gradle
run: ./gradlew build test-integration
Expand Down Expand Up @@ -63,10 +67,14 @@ jobs:
distribution: "temurin"

- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
uses: gradle/actions/wrapper-validation@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0

# Use the open-source basic cache provider
- name: Setup Gradle
uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0
id: setup-gradle
with:
Comment on lines 73 to +76
Copy link

Copilot AI Apr 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The step id: setup-gradle is added but not referenced elsewhere in this job. If no step outputs are consumed, it’s clearer to omit the id.

Copilot uses AI. Check for mistakes.
cache-provider: basic

# Tasks created by https://github.com/gradle-nexus/publish-plugin
- name: Publish package
Expand Down Expand Up @@ -96,10 +104,14 @@ jobs:
distribution: "temurin"

- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
uses: gradle/actions/wrapper-validation@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0

# Use the open-source basic cache provider
- name: Setup Gradle
uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0
id: setup-gradle
Copy link

Copilot AI Apr 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This id: setup-gradle isn’t used by later steps in the job. Consider removing it to reduce clutter unless you plan to reference setup-gradle outputs.

Suggested change
id: setup-gradle

Copilot uses AI. Check for mistakes.
with:
cache-provider: basic

# Tasks created by https://docs.gradle.org/current/userguide/publishing_maven.html
- name: Publish package
Expand Down
Loading