mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 05:40:11 +01:00
* make jsonschema loading work with current versions of the jsonschema library
again and simplify the code while at it.
* Improve itest workflow for validation service, to make them more robust.
* Use a github action to setup nodejs and use a version that is
required by https://github.com/secvisogram/csaf-validator-service/.
* Add nodejs16 installation to prepareUbuntuInstanceForITests.sh.
(so it can be done once in manual settings)
* Add refreshing of apt cache before apt install because sometimes
the cached ubuntu image does not have the apt cache current.
---------
Co-authored-by: Bernhard Reiter <bernhard@intevation.de>
31 lines
994 B
Modula-2
31 lines
994 B
Modula-2
module github.com/csaf-poc/csaf_distribution
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.2.1
|
|
github.com/PaesslerAG/gval v1.2.2
|
|
github.com/PaesslerAG/jsonpath v0.1.1
|
|
github.com/ProtonMail/gopenpgp/v2 v2.5.2
|
|
github.com/PuerkitoBio/goquery v1.8.1
|
|
github.com/gofrs/flock v0.8.1
|
|
github.com/jessevdk/go-flags v1.5.0
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/santhosh-tekuri/jsonschema/v5 v5.2.0
|
|
go.etcd.io/bbolt v1.3.7
|
|
golang.org/x/crypto v0.6.0
|
|
golang.org/x/term v0.5.0
|
|
golang.org/x/time v0.3.0
|
|
)
|
|
|
|
require (
|
|
github.com/ProtonMail/go-crypto v0.0.0-20230124153114-0acdc8ae009b // indirect
|
|
github.com/ProtonMail/go-mime v0.0.0-20221031134845-8fd9bc37cf08 // indirect
|
|
github.com/andybalholm/cascadia v1.3.1 // indirect
|
|
github.com/cloudflare/circl v1.1.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/shopspring/decimal v1.3.1 // indirect
|
|
golang.org/x/net v0.7.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/text v0.7.0 // indirect
|
|
)
|