Skip to content

Commit 37a8a2a

Browse files
authoredSep 5, 2023
Close outdated mote (#465)
1 parent b86cb5f commit 37a8a2a

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed
 

‎.github/workflows/codeql.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99

1010
jobs:
1111
monitor:
12+
permissions:
13+
actions: read
14+
contents: read
15+
security-events: write
1216
uses: navikt/isworkflows/.github/workflows/codeql.yml@master
1317
with:
1418
languages: "[ 'java' ]"

‎.github/workflows/dependency-submission.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@ on:
99

1010
jobs:
1111
dependency_submission:
12+
permissions:
13+
contents: write
1214
uses: navikt/isworkflows/.github/workflows/gradle-dependency-submission.yml@master
1315
secrets: inherit

‎.github/workflows/dispatch.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111
jobs:
1212
deploy-dev:
1313
name: Deploy to NAIS Dev-gcp
14+
permissions:
15+
contents: read
16+
id-token: write
1417
uses: navikt/isworkflows/.github/workflows/manual-deploy-dev.yml@master
1518
with:
1619
git-commit: ${{ github.event.inputs.gitCommit }}

‎.github/workflows/main.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@ on: push
44

55
jobs:
66
build-and-deploy:
7+
permissions:
8+
contents: read
9+
id-token: write
710
uses: navikt/isworkflows/.github/workflows/kotlin-build-deploy.yml@master
811
secrets: inherit

‎src/main/kotlin/no/nav/syfo/cronjob/dialogmoteOutdated/DialogmoteOutdatedCronjob.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class DialogmoteOutdatedCronjob(
7272
}
7373

7474
companion object {
75-
private val uuids = listOf("f7759bd6-43ac-4670-9b4b-4fa880c66783")
75+
private val uuids = listOf("04a6187c-8a0b-4167-944b-92104f21f9cf")
7676
private val log = LoggerFactory.getLogger(DialogmoteOutdatedCronjob::class.java)
7777
}
7878
}

0 commit comments

Comments
 (0)
Please sign in to comment.