Bump io.spring.dependency-management from 1.1.6 to 1.1.7 #226
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 Gradle project | |
on: | |
push: | |
branches: | |
- '**' | |
permissions: | |
checks: write | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project sources | |
uses: actions/checkout@v4 | |
- name: prepare | |
id: prepare | |
uses: ./.github/actions/prepare | |
- name: Run build with Gradle Wrapper | |
run: ./gradlew build | |
- name: Check for new version | |
if: github.ref == 'refs/heads/main' | |
uses: ./.github/actions/detect-new-version | |
with: | |
token: ${{ secrets.PAT }} | |
version: v${{ steps.prepare.outputs.artifact-version }} |