deps: bump the minor-and-patch group with 2 updates #33
Workflow file for this run
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: Build CI and Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - v4 | |
| pull_request: | |
| branches: | |
| - master | |
| - v4 | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: '25' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6.2.0 | |
| - name: Cache Kalkancrypt libraries | |
| id: kalkancrypt-cache | |
| uses: actions/cache@v6 | |
| with: | |
| path: ./lib | |
| key: ${{ runner.os }}-kalkancrypt-libs-2 | |
| - name: Install kalkan libraries | |
| if: steps.kalkancrypt-cache.outputs.cache-hit != 'true' | |
| env: | |
| KALKAN_CRYPT_URL: ${{ secrets.KALKAN_CRYPT_URL }} | |
| KALKAN_CRYPT_XMLDSIG_URL: ${{ secrets.KALKAN_CRYPT_XMLDSIG_URL }} | |
| run: | | |
| wget -P ./lib "$KALKAN_CRYPT_URL" | |
| wget -P ./lib "$KALKAN_CRYPT_XMLDSIG_URL" | |
| - name: Build and Run tests | |
| run: ./gradlew build test --stacktrace | |
| - name: Upload test reports on failure | |
| if: failure() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: test-reports | |
| path: | | |
| build/reports/tests/ | |
| build/test-results/ | |
| retention-days: 7 | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v7 |