Bump org.mockito:mockito-bom from 5.5.0 to 5.6.0 (#492) #1078
This file contains 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: Bygg og prepare release | |
on: | |
push: | |
branches: | |
- '**' | |
paths-ignore: | |
- '**.md' | |
- '**.MD' | |
- '.editorconfig' | |
- '.gitignore' | |
- '.java-version' | |
- 'LICENSE' | |
- 'CODEOWNERS' | |
- 'docs/**' | |
- '.github/*.yml' | |
jobs: | |
build: | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: "0" | |
- name: Setup java and maven | |
uses: navikt/fp-gha-workflows/.github/actions/setup-java-and-maven@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
java-version: '17' | |
- name: Verify | |
shell: bash | |
run: | | |
mvn verify -e -B -s settings.xml | |
- name: Verify EE10 | |
shell: bash | |
run: | | |
mvn verify -e -B -s settings.xml -f ./ee10/pom.xml | |
release-drafter: | |
name: Update | |
permissions: | |
contents: write | |
pull-requests: read | |
if: github.ref_name == 'master' | |
needs: build | |
uses: navikt/fp-gha-workflows/.github/workflows/release-drafter.yml@main | |
secrets: inherit |