Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-snyk-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
--policy-path=.snyk
--exclude-app-vulns
--org=radar-base
--sarif-file-output=${{ matrix.image.name }}.sarif
--sarif-file-output=snyk.sarif

# Detected vulnerabilities will appear on Github in Security->Code_scanning_alerts tab
- name: Upload result to GitHub Code Scanning
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scheduled-snyk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Snyk scheduled code base scan
on:
schedule:
- cron: '0 2 * * 1'
workflow_dispatch:

env:
MODULES: >-
Expand All @@ -19,7 +20,6 @@ env:
'name': 'oura-library',
'build_file': 'oura-library/build.gradle',
}]
workflow_dispatch:

jobs:
prepare-matrix:
Expand Down Expand Up @@ -57,11 +57,11 @@ jobs:
--severity-threshold=high
--policy-path=.snyk
--org=radar-base
--sarif-file-output=${{ matrix.module.module }}.sarif
--sarif-file-output=snyk.sarif

# Detected vulnerabilities will appear on Github in Security->Code_scanning_alerts tab
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ matrix.module.module }}.sarif
sarif_file: snyk.sarif
category: ${{ matrix.module.module }}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@Suppress("ConstPropertyName", "MemberVisibilityCanBePrivate")
object Versions {
const val project = "0.7.1"
const val project = "0.7.3-SNAPSHOT"

const val java = 17
const val kotlin = "1.9.22"
Expand Down
Loading