Skip to content

Commit 4a6d3ff

Browse files
authored
Merge pull request #188 from RADAR-base/release-0.7.2
Sync changes from release with dev
2 parents c8216d0 + bf15f54 commit 4a6d3ff

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/scheduled-snyk-docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
--policy-path=.snyk
6565
--exclude-app-vulns
6666
--org=radar-base
67-
--sarif-file-output=${{ matrix.image.name }}.sarif
67+
--sarif-file-output=snyk.sarif
6868
6969
# Detected vulnerabilities will appear on Github in Security->Code_scanning_alerts tab
7070
- name: Upload result to GitHub Code Scanning

.github/workflows/scheduled-snyk.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Snyk scheduled code base scan
33
on:
44
schedule:
55
- cron: '0 2 * * 1'
6+
workflow_dispatch:
67

78
env:
89
MODULES: >-
@@ -19,7 +20,6 @@ env:
1920
'name': 'oura-library',
2021
'build_file': 'oura-library/build.gradle',
2122
}]
22-
workflow_dispatch:
2323
2424
jobs:
2525
prepare-matrix:
@@ -57,11 +57,11 @@ jobs:
5757
--severity-threshold=high
5858
--policy-path=.snyk
5959
--org=radar-base
60-
--sarif-file-output=${{ matrix.module.module }}.sarif
60+
--sarif-file-output=snyk.sarif
6161
6262
# Detected vulnerabilities will appear on Github in Security->Code_scanning_alerts tab
6363
- name: Upload result to GitHub Code Scanning
6464
uses: github/codeql-action/upload-sarif@v3
6565
with:
66-
sarif_file: ${{ matrix.module.module }}.sarif
66+
sarif_file: snyk.sarif
6767
category: ${{ matrix.module.module }}

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@Suppress("ConstPropertyName", "MemberVisibilityCanBePrivate")
22
object Versions {
3-
const val project = "0.7.1"
3+
const val project = "0.7.3-SNAPSHOT"
44

55
const val java = 17
66
const val kotlin = "1.9.22"

0 commit comments

Comments
 (0)