Bump no.nav.foreldrepenger.felles:fp-bom from 3.0.1 to 3.1.0 #533
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: Build and deploy | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
paths-ignore: | ||
- '**.md' | ||
- '**.MD' | ||
- '.gitignore' | ||
- 'LICENSE' | ||
- 'CODEOWNERS' | ||
- 'dokumentasjon/**' | ||
- 'lokalutvikling/**' | ||
jobs: | ||
build-app: | ||
name: Build | ||
permissions: | ||
contents: read | ||
packages: write | ||
id-token: write | ||
uses: navikt/fp-gha-workflows/.github/workflows/build-app-no-db.yml@main | ||
with: | ||
build-image: ${{ github.ref_name == 'master' }} # default: true | ||
push-image: ${{ github.ref_name == 'master' }} # default: false | ||
secrets: inherit | ||
verdikjede: | ||
name: Verdikjedetester | ||
permissions: | ||
contents: read | ||
id-token: write | ||
if: github.ref_name == 'master' | ||
needs: build-app | ||
uses: navikt/fp-autotest/.github/workflows/autotest.yml@master | ||
with: | ||
build-version: ${{ needs.build-app.outputs.build-version }} | ||
test-suite: verdikjede | ||
secrets: inherit | ||
notify: | ||
name: Notify | ||
if: github.ref_name == 'master' && (success() || failure()) && !contains(needs.*.result, 'skipped') | ||
needs: [build-app, verdikjede] | ||
uses: navikt/fp-autotest/.github/workflows/report-and-notify.yml@master | ||
with: | ||
verdikjede: ${{ needs.verdikjede.outputs.resultat }} | ||
build-version: ${{ needs.build-app.outputs.build-version }} | ||
secrets: inherit | ||
deploy-dev-fss: | ||
name: Deploy dev-fss | ||
permissions: | ||
id-token: write | ||
if: github.ref_name == 'master' | ||
needs: [build-app, verdikjede] | ||
uses: navikt/fp-gha-workflows/.github/workflows/deploy.yml@main | ||
with: | ||
gar: true | ||
image: ${{ needs.build-app.outputs.build-version }} | ||
cluster: dev-fss | ||
secrets: inherit | ||
deploy-dev-gcp: | ||
name: Deploy dev-gcp | ||
permissions: | ||
id-token: write | ||
if: github.ref_name == 'master' | ||
needs: [build-app, verdikjede] | ||
uses: navikt/fp-gha-workflows/.github/workflows/deploy.yml@main | ||
with: | ||
gar: true | ||
image: ${{ needs.build-app.outputs.build-version }} | ||
cluster: dev-gcp | ||
secrets: inherit | ||
deploy-prod-fss: | ||
name: Deploy prod-fss | ||
permissions: | ||
id-token: write | ||
if: github.ref_name == 'master' | ||
needs: [build-app, verdikjede, deploy-dev] | ||
Check failure on line 83 in .github/workflows/build.yml
|
||
uses: navikt/fp-gha-workflows/.github/workflows/deploy.yml@main | ||
with: | ||
gar: true | ||
image: ${{ needs.build-app.outputs.build-version }} | ||
cluster: prod-fss | ||
secrets: inherit | ||
deploy-prod-gcp: | ||
name: Deploy prod-gcp | ||
permissions: | ||
id-token: write | ||
if: github.ref_name == 'master' | ||
needs: [build-app, verdikjede, deploy-dev] | ||
uses: navikt/fp-gha-workflows/.github/workflows/deploy.yml@main | ||
with: | ||
gar: true | ||
image: ${{ needs.build-app.outputs.build-version }} | ||
cluster: prod-gcp | ||
secrets: inherit |