OPHY-711: Enable rondo-scheduler and payment-service-sftp on prod and QA #1484
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lein dependency check | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
lein-dependency-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Configure java version | |
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
check-latest: true | |
- name: Run lein dependency check | |
run: scripts/run_lein_dependency_check.sh | |
env: | |
NVD_API_TOKEN: ${{ secrets.NVD_API_TOKEN }} | |
- name: Upload lein dependency check report | |
if: ${{ !cancelled() }} | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 | |
with: | |
name: lein_dependency_check_report | |
path: dependency-check/target/nvd/valtionavustus/dependency-check-report.html |