diff --git a/.github/workflows/flow-deploy-release-artifact.yaml b/.github/workflows/flow-deploy-release-artifact.yaml index 461f49681..71d525447 100644 --- a/.github/workflows/flow-deploy-release-artifact.yaml +++ b/.github/workflows/flow-deploy-release-artifact.yaml @@ -197,7 +197,7 @@ jobs: java-version: ${{ inputs.java-version }} - name: Setup Gradle - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: wrapper gradle-home-cache-includes: | diff --git a/.github/workflows/zxc-code-analysis.yaml b/.github/workflows/zxc-code-analysis.yaml index 7f3fa7a04..b8cdf116a 100644 --- a/.github/workflows/zxc-code-analysis.yaml +++ b/.github/workflows/zxc-code-analysis.yaml @@ -105,7 +105,7 @@ jobs: java-version: ${{ inputs.java-version }} - name: Setup Gradle - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: ${{ inputs.gradle-version }} @@ -141,7 +141,7 @@ jobs: echo "options=${SONAR_OPTS}" >> "${GITHUB_OUTPUT}" - name: SonarCloud Scan - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 env: GITHUB_TOKEN: ${{ secrets.access-token }} SONAR_TOKEN: ${{ secrets.sonar-token }} diff --git a/.github/workflows/zxc-compile-code.yaml b/.github/workflows/zxc-compile-code.yaml index cce9070b1..70b197ef8 100644 --- a/.github/workflows/zxc-compile-code.yaml +++ b/.github/workflows/zxc-compile-code.yaml @@ -89,7 +89,7 @@ jobs: java-version: ${{ inputs.java-version }} - name: Setup Gradle - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: ${{ inputs.gradle-version }} @@ -158,14 +158,14 @@ jobs: - name: Compile id: gradle-build - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: ${{ inputs.gradle-version }} arguments: assemble --scan - name: Examples Compile id: gradle-build-examples - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: ${{ inputs.gradle-version }} arguments: assemble --scan @@ -173,14 +173,14 @@ jobs: gradle-executable: gradlew - name: Spotless Check - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 if: ${{ inputs.enable-spotless-check && steps.gradle-build.conclusion == 'success' && !cancelled() }} with: gradle-version: ${{ inputs.gradle-version }} arguments: spotlessCheck --scan - name: Examples Spotless Check - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 if: ${{ inputs.enable-spotless-check && steps.gradle-build-examples.conclusion == 'success' && !cancelled() }} with: gradle-version: ${{ inputs.gradle-version }} @@ -190,7 +190,7 @@ jobs: - name: Unit Tests id: gradle-test - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 if: ${{ inputs.enable-unit-tests && steps.gradle-build.conclusion == 'success' && !cancelled() && !failure() }} with: gradle-version: ${{ inputs.gradle-version }} @@ -198,7 +198,7 @@ jobs: - name: Examples Unit Tests id: gradle-test-examples - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 if: ${{ inputs.enable-unit-tests && steps.gradle-build-examples.conclusion == 'success' && !cancelled() && !failure() }} with: gradle-version: ${{ inputs.gradle-version }} @@ -218,7 +218,7 @@ jobs: # Technically, this step is not required since the Gradle check task implicitly includes it but is executed again # here to prevent failures if future modules are not wired properly. - name: Jacoco Coverage Report - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 if: ${{ inputs.enable-unit-tests && steps.gradle-build.conclusion == 'success' && !cancelled() }} with: gradle-version: ${{ inputs.gradle-version }} diff --git a/.github/workflows/zxc-release-maven-central.yaml b/.github/workflows/zxc-release-maven-central.yaml index 9f44d858c..4a6418727 100644 --- a/.github/workflows/zxc-release-maven-central.yaml +++ b/.github/workflows/zxc-release-maven-central.yaml @@ -120,7 +120,7 @@ jobs: java-version: ${{ inputs.java-version }} - name: Setup Gradle - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: ${{ inputs.gradle-version }} gradle-home-cache-includes: | @@ -130,7 +130,7 @@ jobs: # This step is used to update the version number in the build.properties file. - name: Apply Version Number Update (Explicit) - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: ${{ inputs.gradle-version }} arguments: versionAsSpecified --scan -PnewVersion=${{ inputs.new-version }} @@ -138,7 +138,7 @@ jobs: # Technically, this step is not required but is executed to provide the end users with a summary of the version # numbers assigned to each published artifact. - name: Version Report - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: ${{ inputs.gradle-version }} arguments: githubVersionSummary --scan @@ -149,7 +149,7 @@ jobs: # components fail to build. - name: Gradle Assemble id: gradle-build - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 if: ${{ inputs.dry-run-enabled != true && !cancelled() && !failure() }} with: gradle-version: ${{ inputs.gradle-version }} @@ -158,7 +158,7 @@ jobs: # Publishes the artifacts to the Maven Central Nexus staging repository. A manual step is required to release # the artifacts from the staging repository to Maven Central. - name: Gradle Publish to Maven Central - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 if: ${{ inputs.dry-run-enabled != true && !cancelled() && !failure() }} env: OSSRH_USERNAME: ${{ secrets.ossrh-user-name }} diff --git a/.github/workflows/zxf-snyk-monitor.yaml b/.github/workflows/zxf-snyk-monitor.yaml index 153a48d0e..d6dd97111 100644 --- a/.github/workflows/zxf-snyk-monitor.yaml +++ b/.github/workflows/zxf-snyk-monitor.yaml @@ -43,7 +43,7 @@ jobs: java-version: 17.0.7 - name: Setup Gradle - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: wrapper @@ -57,7 +57,7 @@ jobs: # Snyk will fail if the code does not compile and the error messages are less than helpful. Therefore, we will # compile the code first and then run Snyk so that we can get diagnostic information if the code does not compile. - name: Compile - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 + uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 with: gradle-version: wrapper arguments: assemble --scan