mirror of
https://github.com/taigrr/jety.git
synced 2026-04-02 03:19:03 -07:00
- Add Delete(key) to remove keys from all config layers - Add Sub(key) to get a scoped ConfigManager for nested sections - Update CodeQL workflow actions to v4/v5/v3 - Update govulncheck workflow checkout to v4 - Remove boilerplate comments from CodeQL workflow - Add comprehensive tests for both new methods - Update README with Sub() usage example and API docs
21 lines
408 B
YAML
21 lines
408 B
YAML
name: "govulncheck"
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
schedule:
|
|
- cron: '23 13 * * 1'
|
|
|
|
jobs:
|
|
govulncheck_job:
|
|
runs-on: ubuntu-latest
|
|
name: Run govulncheck
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- id: govulncheck
|
|
uses: golang/govulncheck-action@v1
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
go-package: ./...
|