fix(deps): update dependency org.junit.jupiter:junit-jupiter to v5.12… #2467
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: JavaCI-PR | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- "README.md" | |
- "**/README.md" | |
- "CODE_OF_CONDUCT.md" | |
- "CONTRIBUTING.md" | |
- "pull_request_template.md" | |
- ".lift/.toml" | |
- "**/.lift/.toml" | |
- "SECURITY.md" | |
- "LICENSE" | |
- ".github/ISSUE_TEMPLATE/**" | |
- ".github/assets/**" | |
- ".github/workflows/**" | |
- "!.github/workflows/gradle-ci.yml" | |
- ".github/pr-labeler.yml" | |
- "renovate.json" | |
- ".whitesource" | |
- "gradle/libs.versions.toml" | |
- "config/ossindex/exclusions.txt" | |
- ".idea/**" | |
- ".gitignore" | |
- ".qlty/**" | |
permissions: read-all | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
# Set up build environment | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1 | |
- name: Build with Gradle | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: ./gradlew printVersion build sonar | |
- name: Upload Test reports - App | |
if: always() | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
with: | |
name: test-report-lowkey-vault-app | |
path: | | |
lowkey-vault-app/build/reports/tests/test | |
lowkey-vault-app/build/reports/abort-mission/abort-mission-report.html | |
retention-days: 5 | |
- name: Upload Test reports - Docker | |
if: always() | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
with: | |
name: test-report-lowkey-vault-docker | |
path: | | |
lowkey-vault-docker/build/reports/cucumber | |
lowkey-vault-docker/build/reports/abort-mission/abort-mission-report.html | |
retention-days: 5 | |
- name: Upload Test reports - Testcontainers | |
if: always() | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
with: | |
name: test-report-lowkey-vault-testcontainers | |
path: lowkey-vault-testcontainers/build/reports/tests/test | |
retention-days: 5 |