Bump io.github.classgraph:classgraph from 4.8.177 to 4.8.179 (#279) #229
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: Deploy Snaphosts | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy-snapshots: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| steps: | |
| - name: Setup Java Action | |
| uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - name: Setup Maven Action | |
| uses: s4u/setup-maven-action@4f7fb9d9675e899ca81c6161dadbba0189a4ebb1 # v1.18.0 | |
| with: | |
| java-distribution: 'temurin' | |
| java-version: 17 | |
| maven-version: 3.9.9 | |
| cache-enabled: true | |
| settings-servers: | | |
| [{ | |
| "id": "central", | |
| "username": "${{ secrets.CENTRAL_USERNAME }}", | |
| "password": "${{ secrets.CENTRAL_PASSWORD }}" | |
| }] | |
| - name: Import GPG key | |
| uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec # v6.3.0 | |
| with: | |
| gpg_private_key: ${{ secrets.GPG_KEY }} | |
| passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
| - name: List keys | |
| run: gpg -K | |
| - name: Maven build | |
| run: mvn --batch-mode -Psign --update-snapshots -Dmaven.resolver.transport=wagon deploy | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2 | |
| with: | |
| files: target/site/jacoco/jacoco.xml | |
| token: ${{ secrets.CODECOV_TOKEN }} |