Skip to content

Commit

Permalink
Merge pull request #31 from RADAR-base/release-10.5.4
Browse files Browse the repository at this point in the history
release-10.5.4
  • Loading branch information
pvannierop authored Oct 10, 2024
2 parents 8c0ce26 + 33dd980 commit 80e9f30
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 2 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/scheduled-snyk.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Snyk scheduled test
on:
schedule:
- cron: '0 2 1 * *'
push:
branches:
- master

jobs:
security:
runs-on: ubuntu-latest
env:
REPORT_FILE: test.json
steps:
- uses: actions/checkout@v3
- uses: snyk/actions/gradle-jdk17@master
name: Run Snyk to check for vulnerabilities
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with: --all-projects --configuration-matching='^runtimeClasspath$' --fail-on=upgradable --json-file-output=${{ env.REPORT_FILE }}--org=radar-base --policy-path=$PWD/.snyk

- name: Report new vulnerabilities
uses: thehyve/report-vulnerability@master
if: success() || failure()
with:
report-file: ${{ env.REPORT_FILE }}
env:
TOKEN: ${{ secrets.GITHUB_TOKEN }}
14 changes: 14 additions & 0 deletions .github/workflows/snyk.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Snyk test
on:
pull_request:
branches: [ master, dev ]
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: snyk/actions/gradle-jdk17@master
name: Run Snyk to check for vulnerabilities
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with: --all-projects --configuration-matching='^runtimeClasspath$' --org=radar-base --policy-path=$PWD/.snyk
5 changes: 5 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.25.0
# ignores vulnerabilities until expiry date; change duration by modifying expiry date
ignore:
patch: {}
4 changes: 2 additions & 2 deletions kafka-connect-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@
<derby.version>10.14.2.0</derby.version>
<commons-io.version>2.4</commons-io.version>
<kafka.connect.maven.plugin.version>0.11.1</kafka.connect.maven.plugin.version>
<sqlite-jdbc.version>3.25.2</sqlite-jdbc.version>
<sqlite-jdbc.version>3.41.2.2</sqlite-jdbc.version>
<oracle.jdbc.driver.version>19.7.0.0</oracle.jdbc.driver.version>
<mssqlserver.jdbc.driver.version>8.4.1.jre8</mssqlserver.jdbc.driver.version>
<postgresql.version>42.3.3</postgresql.version>
<postgresql.version>42.3.9</postgresql.version>
<jtds.driver.version>1.3.1</jtds.driver.version>
<slf4j.version>1.7.36</slf4j.version>
<reload4j.version>1.2.19</reload4j.version>
Expand Down

0 comments on commit 80e9f30

Please sign in to comment.