Added opentelemetry counter and gauge - removed custom metrics #268
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: Check deps for vulnerabilities | |
on: | |
push: | |
branches: ["*"] | |
tags: ["*"] | |
schedule: | |
- cron: '0 1 * * 1,2,3,4,5' # every workday | |
jobs: | |
deps: | |
runs-on: ubuntu-latest | |
env: | |
NVD_API_TOKEN: ${{ secrets.NVD_API_TOKEN }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache lein project dependencies | |
uses: actions/cache@v4 | |
with: | |
path: "~/.m2/repository" | |
key: "${{ runner.os }}-clojure-${{ hashFiles('**/project.clj') }}" | |
- name: NVD clojure | |
uses: jomco/nvd-clojure-action@v4 |