-
Notifications
You must be signed in to change notification settings - Fork 198
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
chore: update GitHub actions workflows #1806
Conversation
- name: Run Build | ||
id: build | ||
uses: gradle/gradle-build-action@v2 | ||
run: ./gradlew build |
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 gradle/actions/setup-gradle
action replaces gradle/gradle-build-action
.
Reference:
https://github.com/gradle/actions/tree/af6e5767241073b8ab20cc8cf7e95ec63fadc160/setup-gradle#the-setup-gradle-action
@@ -24,7 +24,7 @@ jobs: | |||
id: extract_branch | |||
run: echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT | |||
# If it has release drafter: | |||
- uses: release-drafter/release-drafter@v5 | |||
- uses: release-drafter/release-drafter@v6 |
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.
There are no breaking changes in this release:
https://github.com/release-drafter/release-drafter/releases/tag/v6.0.0
I did not upgrade the "Build and install groovy (no docs)" step in If I replaced it with - name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
build-scan-publish: true
build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
build-scan-terms-of-use-agree: "yes"
# Use the Gradle wrapper in the ../groovy directory
- name: Build and install groovy (no docs)
run: |
cd ../groovy
./gradlew install \
-x groovydoc \
-x javadoc \
-x javadocAll \
-x groovydocAll \
-x asciidoc \
-x docGDK
env:
GRADLE_SCANS_ACCEPT: yes
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} Then the I do not see any inputs/parameters for Update: perhaps we should update the step to be the same as it is in |
# Conflicts: # gradle.properties
…ations (grails#1810) * javax to jakarta, groovy 4, spring framework 6 and spring boot 3 migrations --------- Co-authored-by: Mattias Reichel <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: puneetbehl <[email protected]> Co-authored-by: Puneet Behl <[email protected]> Co-authored-by: Guillermo Calvo <[email protected]> Co-authored-by: jhron <[email protected]> Co-authored-by: micronaut-build <[email protected]> Co-authored-by: Guillermo Calvo <[email protected]>
…rails#1817) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…1.9.0 (grails#1805) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
… compatible version and remove unused (grails#1825)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fix(deps): update dependency com.h2database:h2 to v2.3.232
…applications in gorm-hibernate5 (grails#1832)
Cleanup & fix annotation reading for classpath scanning
Revert classpath scanning change, use the same strategy as grails-core
Remove api dependency until groovy version stabilizes
remove groovy transitive dependency until groovy version stabilizes
dependency cleanup
Update groovy monorepo to v4.0.24
Updates since groovy 4.0.24 is released
Add back logic for groovy snapshot support
Update dependency gradle to v8.11
@jamesfredley yes, I can do that :) |
Also update to develocity gradle plugin and related change to DEVELOCITY_* env vars.
aac8e09
to
66faa02
Compare
I've rebased my branch on |
Update the GitHub actions workflows to use the latest version of multiple actions, including
actions/checkout
,actions/setup-java
,actions/cache
, andrelease-drafter/release-drafter
:https://github.com/actions/checkout/tags
https://github.com/actions/setup-java/tags
https://github.com/actions/cache?tab=readme-ov-file#v4
https://github.com/release-drafter/release-drafter/tags