Skip to content

Commit

Permalink
ci: use release version of shared Gradle workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
stempler committed Aug 21, 2024
1 parent 3dd9b7f commit c6f0f29
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,14 @@ jobs:
./gradlew spotlessCheck
check:
uses: wetransform/gha-workflows/.github/workflows/gradle-library.yml@06a242e21c2f8e81407d629a67b747eea7c91706 # v2.4.0
uses: wetransform/gha-workflows/.github/workflows/gradle-library-check.yml@ac5514fee04f1b8ba18483fe8ff82c70fd134505 # v2.5.0
with:
java-version: 17
multi-module: true
skip-scan: true
build-tasks: '--continue clean check :allure:allureAggreggateResults' # perform all tasks even if tests of one project fail
gradle-tasks: '--continue clean check :allure:allureAggreggateResults' # perform all tasks even if tests of one project fail
upload-artifact-path: allure/build/allure-results
upload-artifact-name: allure-results
notify-failure: false
secrets:
WETF_ARTIFACTORY_USER: ${{ secrets.WETF_ARTIFACTORY_USER }}
WETF_ARTIFACTORY_PASSWORD: ${{ secrets.WETF_ARTIFACTORY_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# Only on main repository (no publishing on forks)
if: github.repository_owner == 'halestudio'

uses: wetransform/gha-workflows/.github/workflows/gradle-library-publish.yml@master # TODO use release
uses: wetransform/gha-workflows/.github/workflows/gradle-library-publish.yml@ac5514fee04f1b8ba18483fe8ff82c70fd134505 # v2.5.0
with:
java-version: 17
multi-module: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# Only on main repository (don't release on forks)
if: github.repository_owner == 'halestudio'

uses: wetransform/gha-workflows/.github/workflows/gradle-library-publish.yml@06a242e21c2f8e81407d629a67b747eea7c91706 # v2.4.0
uses: wetransform/gha-workflows/.github/workflows/gradle-library-publish.yml@ac5514fee04f1b8ba18483fe8ff82c70fd134505 # v2.5.0
with:
java-version: 17
multi-module: true
Expand Down
2 changes: 1 addition & 1 deletion .wetf-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ presets: []

# List of custom required checks
required_checks:
- check / run
- check / check / run
- require-challenge
- spotless

0 comments on commit c6f0f29

Please sign in to comment.