Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 88750bb

Browse files
committedDec 24, 2024·
Update common files
1 parent 2f476cc commit 88750bb

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed
 

‎.github/workflows/gradle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: "📜 Upload binary compatibility check results"
8080
if: matrix.java == '17'
81-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
81+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
8282
with:
8383
name: binary-compatibility-reports
8484
path: "**/build/reports/binary-compatibility-*.html"

‎.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ jobs:
6666
# Store the hash in a file, which is uploaded as a workflow artifact.
6767
sha256sum $ARTIFACTS | base64 -w0 > artifacts-sha256
6868
- name: Upload build artifacts
69-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
69+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
7070
with:
7171
name: gradle-build-outputs
7272
path: build/repo/${{ steps.publish.outputs.group }}/*/${{ steps.publish.outputs.version }}/*
7373
retention-days: 5
7474
- name: Upload artifacts-sha256
75-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
75+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
7676
with:
7777
name: artifacts-sha256
7878
path: artifacts-sha256
@@ -160,6 +160,6 @@ jobs:
160160
- name: Upload assets
161161
# Upload the artifacts to the existing release. Note that the SLSA provenance will
162162
# attest to each artifact file and not the aggregated ZIP file.
163-
uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974 # v2.1.0
163+
uses: softprops/action-gh-release@7b4da11513bf3f43f9999e90eabced41ab8bb048 # v2.2.0
164164
with:
165165
files: artifacts.zip

‎gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

‎gradlew

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

0 commit comments

Comments
 (0)
Please sign in to comment.