diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 02f361a..2a06dbb 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -44,7 +44,7 @@ jobs: queries: security-and-quality ram: 4096 - name: Build - uses: gradle/gradle-build-action@v2 + uses: gradle/gradle-build-action@v3 with: # codeQL requires a full before/after build to compare results. Caching can result in action failing #cache-read-only: true diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index bb34854..56aa495 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -26,7 +26,7 @@ jobs: - name: Build (Publish snapshots to maven central) if: ${{ github.ref == 'refs/heads/main'}} # TODO: Need to extend build to make use of snapshot repo for publishing - uses: gradle/gradle-build-action@v2 + uses: gradle/gradle-build-action@v3 with: arguments: | publish @@ -40,7 +40,7 @@ jobs: # In other cases just build but don't publish - name: Build (no snapshots) if: ${{ github.ref != 'refs/heads/main'}} - uses: gradle/gradle-build-action@v2 + uses: gradle/gradle-build-action@v3 with: arguments: | build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f4dc68e..8b01a03 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: - uses: gradle/wrapper-validation-action@v1 - name: Build with Gradle & Release artifacts # TODO: Need to extend build to make use of release repo for publishing - uses: gradle/gradle-build-action@v2 + uses: gradle/gradle-build-action@v3 with: arguments: | publish diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index cb64ec5..e414b76 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -20,7 +20,7 @@ jobs: distribution: 'temurin' - uses: gradle/wrapper-validation-action@v1 - name: Build - uses: gradle/gradle-build-action@v2 + uses: gradle/gradle-build-action@v3 with: arguments: | build