Bump actions/checkout from 3.5.3 to 3.6.0 #1023
Workflow file for this run
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/checkout@v3.6.0 | |
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 EE9 | |
shell: bash | |
run: | | |
mvn verify -e -B -s settings.xml -f ./ee9/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 |