feat(core): Introduce ERS mode, ability to connect to remote ERS #3679
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: "Vulnerability Checks" | |
on: | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
vulncheck: | |
name: vulncheck | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
directory: | |
- examples | |
- sdk | |
- lib/ocrypto | |
- service | |
steps: | |
- name: govluncheck | |
uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee | |
with: | |
go-version-input: "1.22.5" | |
work-dir: ${{ matrix.directory }} |