fix(deps): update cucumber dependencies to v7.34.7 {patch} (#2013) #3804
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
| 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/**" | |
| - "!.github/workflows/gradle-ci.yml" | |
| - "renovate.json" | |
| - ".whitesource" | |
| - "gradle/libs.versions.toml" | |
| - "config/dependency-check/**" | |
| - ".idea/**" | |
| - ".gitignore" | |
| - ".qlty/**" | |
| permissions: read-all | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| # Set up the build environment | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| fetch-depth: 0 | |
| - name: Validate Gradle wrapper | |
| uses: gradle/actions/wrapper-validation@9c971963bec38e04b3d30dcc455b5382be2fdbfb # v6.3.0 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@9c971963bec38e04b3d30dcc455b5382be2fdbfb # v6.3.0 | |
| - 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@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| 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@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| 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@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: test-report-lowkey-vault-testcontainers | |
| path: lowkey-vault-testcontainers/build/reports/tests/test | |
| retention-days: 5 |