chore(deps): update dependency git-conventional-commits to v2.8.0 #543
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
| # SPDX-FileCopyrightText: Copyright © 2024 Caleb Cushing | |
| # | |
| # SPDX-License-Identifier: CC0-1.0 | |
| name: build | |
| on: [push, workflow_call] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: write | |
| packages: read | |
| env: | |
| ORG_GRADLE_PROJECT_ghUsername: ${{ secrets.GITHUB_ACTOR }} | |
| ORG_GRADLE_PROJECT_ghPassword: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.workflow_run.head_branch}} | |
| filter: "blob:none" | |
| fetch-depth: 0 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
| - run: make ci-build | |
| - uses: gradle/actions/dependency-submission@v4 |