diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index df447afbe..1eb016a16 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: options: --user root steps: - uses: actions/checkout@v4 - - uses: gradle/wrapper-validation-action@v1 + - uses: gradle/wrapper-validation-action@v2 # Generate the build number based on tags to allow per branch build numbers, not something github provides by default. - name: Generate build number diff --git a/.github/workflows/test-push.yml b/.github/workflows/test-push.yml index 1cc593645..5de37f2a1 100644 --- a/.github/workflows/test-push.yml +++ b/.github/workflows/test-push.yml @@ -17,7 +17,7 @@ jobs: options: --user root steps: - uses: actions/checkout@v4 - - uses: gradle/wrapper-validation-action@v1 + - uses: gradle/wrapper-validation-action@v2 - run: gradle build check -x test --stacktrace --warning-mode fail build_windows: @@ -29,7 +29,7 @@ jobs: with: java-version: 17 distribution: 'temurin' - - uses: gradle/wrapper-validation-action@v1 + - uses: gradle/wrapper-validation-action@v2 - run: ./gradlew build check -x test --stacktrace --warning-mode fail # This job is used to feed the test matrix of next job to allow the tests to run in parallel