Skip to content

Bump org.jetbrains.kotlinx:kotlinx-coroutines-core from 1.8.1 to 1.9.0 #1178

Bump org.jetbrains.kotlinx:kotlinx-coroutines-core from 1.8.1 to 1.9.0

Bump org.jetbrains.kotlinx:kotlinx-coroutines-core from 1.8.1 to 1.9.0 #1178

Workflow file for this run

name: Build-Deploy-Preprod
on:
workflow_dispatch:
pull_request:
permissions:
packages: write
contents: read
id-token: write
jobs:
deploy-to-dev:
name: Bygg app/image, push til github, deploy til dev-fss
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'gradle'
- name: Test and build
env:
GPR_API_KEY: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew test build cyclonedxBom
- uses: nais/docker-build-push@v0
id: docker-push
if: github.event.pull_request.user.login != 'dependabot[bot]'
with:
team: teamfamilie
push_image: true
dockerfile: Dockerfile
docker_context: .
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }}
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}
byosbom: build/reports/application.cdx.json
- name: Deploy to dev-fss
uses: nais/deploy/actions/deploy@v2
if: github.event.pull_request.user.login != 'dependabot[bot]'
env:
CLUSTER: dev-fss
RESOURCE: nais/dev-fss.yml
VAR: image=${{ steps.docker-push.outputs.image }}