-
Notifications
You must be signed in to change notification settings - Fork 23
chore: upgrade gradle/actions to v6.1.0 with basic cache provider #318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -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: | ||||
| cache-provider: basic | ||||
|
|
||||
| - name: Test and Build with Gradle | ||||
| run: ./gradlew build test-integration | ||||
|
|
@@ -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
|
||||
| cache-provider: basic | ||||
|
|
||||
| # Tasks created by https://github.com/gradle-nexus/publish-plugin | ||||
| - name: Publish package | ||||
|
|
@@ -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 | ||||
|
||||
| id: setup-gradle |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The step
id: setup-gradleis introduced here but isn’t referenced anywhere in this workflow (no${{ steps.setup-gradle.* }}usages). Consider removing theidto avoid implying downstream outputs are used.