Skip to content

Commit

Permalink
Merge pull request #30 from khulnasoft-lab/dev
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
gitworkflows authored Aug 13, 2023
2 parents 1fb8bac + 4a3aae0 commit 0f5982a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
env:
REPO_OWNER: ${{ github.repository_owner }} # used in 'make db-build'
GH_USER: aqua-bot
GH_USER: khulnasoft-lab
VERSION: 2
jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- cron: '0 */12 * * *'
workflow_dispatch:
env:
ALIAS_DOCKER: w3security
ALIAS_DOCKER: khulnasoft
REP: vul-db
jobs:
publish:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ You can download the actual compiled database via [Vul](https://khulnasoft-labs.

Vul:
```sh
TRIVY_TEMP_DIR=$(mktemp -d)
vul --cache-dir $TRIVY_TEMP_DIR image --download-db-only
tar -cf ./db.tar.gz -C $TRIVY_TEMP_DIR/db metadata.json vul.db
rm -rf $TRIVY_TEMP_DIR
VUL_TEMP_DIR=$(mktemp -d)
vul --cache-dir $VUL_TEMP_DIR image --download-db-only
tar -cf ./db.tar.gz -C $VUL_TEMP_DIR/db metadata.json vul.db
rm -rf $VUL_TEMP_DIR
```
oras >= v0.13.0:
```sh
Expand Down
2 changes: 1 addition & 1 deletion pkg/vulnsrc/alma/alma.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func (vs *VulnSrc) commit(tx *bolt.Tx, platformName string, errata []Erratum) er
}

// We need to work around this issue for now.
// https://github.com/aquasecurity/fanal/issues/186#issuecomment-931523102
// https://github.com/khulnasoft-lab/fanal/issues/186#issuecomment-931523102
advisories := map[string]types.Advisory{}

cveID := ref.ID
Expand Down

0 comments on commit 0f5982a

Please sign in to comment.