Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

Bump no.nav.foreldrepenger.felles:fp-bom from 0.5.5 to 3.0.1 #506

Bump no.nav.foreldrepenger.felles:fp-bom from 0.5.5 to 3.0.1

Bump no.nav.foreldrepenger.felles:fp-bom from 0.5.5 to 3.0.1 #506

Workflow file for this run

name: Bygg og deploy
on:
push:
branches:
- '**'
paths-ignore:
- '**.md'
- '**.MD'
- '.gitignore'
- '.editorconfig'
- '.java-version'
- 'LICENCE'
- 'CODEOWNERS'
jobs:
build-app:

Check failure on line 16 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Bygg og deploy

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 16, Col: 3): Error calling workflow 'navikt/fp-gha-workflows/.github/workflows/build-app.yml@main'. The nested job 'build-and-test' is requesting 'packages: write, id-token: write', but is only allowed 'packages: read, id-token: none'.
name: Build
uses: navikt/fp-gha-workflows/.github/workflows/build-app.yml@main
with:
sonar-scan: true
build-image: ${{ github.ref_name == 'master' }} # default: true
push-image: ${{ github.ref_name == 'master' }} # default: false
secrets: inherit
verdikjede:
name: Verdikjedetester
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:
name: Deploy dev
if: github.ref_name == 'master'
needs: [build-app, verdikjede]
uses: navikt/fp-gha-workflows/.github/workflows/deploy.yml@main
with:
image: ghcr.io/${{ github.repository }}:${{ needs.build-app.outputs.build-version }}
cluster: dev-fss
secrets: inherit
deploy-prod:
name: Deploy prod
if: github.ref_name == 'master'
needs: [build-app, verdikjede, deploy-dev]
uses: navikt/fp-gha-workflows/.github/workflows/deploy.yml@main
with:
image: ghcr.io/${{ github.repository }}:${{ needs.build-app.outputs.build-version }}
cluster: prod-fss
secrets: inherit