Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump gradle/gradle-build-action from 2 to 3 #195

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,12 @@ jobs:
with:
java-version: 17
distribution: 'zulu' # =openJDK
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v3
- name: Build (no tests)
uses: gradle/gradle-build-action@v2
with:
gradle-home-cache-cleanup: true
arguments: clean build -x test
- name: Setup gradle
uses: gradle/actions/setup-gradle@v3
- name: build without tests
run: ./gradlew clean build -x test

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
5 changes: 1 addition & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,8 @@ jobs:
- name: Build and Test with Gradle
run: ./gradlew build
- name: Do one Coveralls test report
uses: gradle/gradle-build-action@v2
if: matrix.operating-system == 'ubuntu-latest' && matrix.jdk == 17
with:
gradle-home-cache-cleanup: true
arguments: jacocoTestReport coveralls
run: ./gradlew jacocoTestReport coveralls
- name: Docker build and test
if: matrix.operating-system == 'ubuntu-latest' && matrix.jdk == 17
run: time bash ./docker/test_docker.sh
Expand Down
Loading