diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 0aac0a3..283ab6a 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -52,7 +52,7 @@ jobs: - name: RPM build MetricCollector id: rpmbuild run: make RPM - + # AlmaLinux 8.5 is a derivate of RedHat Enterprise Linux 8 (UBI8), # so the created RPM both contain the substring 'el8' in the RPM file names # This step replaces the substring 'el8' to 'alma85'. It uses the move operation diff --git a/.github/workflows/runonce.yml b/.github/workflows/runonce.yml index 1fc7555..2036179 100644 --- a/.github/workflows/runonce.yml +++ b/.github/workflows/runonce.yml @@ -31,4 +31,4 @@ jobs: run: make - name: Run MetricCollector once - run: ./cc-metric-collector --once --config .github/ci-config.json + run: ./cc-metric-collector --once --config .github/ci-config.json \ No newline at end of file diff --git a/go.mod b/go.mod index b233f70..37e242f 100644 --- a/go.mod +++ b/go.mod @@ -34,3 +34,22 @@ require ( google.golang.org/protobuf v1.26.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) + +require ( + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash/v2 v2.1.2 // indirect + github.com/deepmap/oapi-codegen v1.8.2 // indirect + github.com/golang/protobuf v1.5.2 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect + github.com/nats-io/nats-server/v2 v2.8.0 // indirect + github.com/nats-io/nkeys v0.3.0 // indirect + github.com/nats-io/nuid v1.0.1 // indirect + github.com/pkg/errors v0.9.1 // indirect + github.com/prometheus/client_model v0.2.0 // indirect + github.com/prometheus/common v0.32.1 // indirect + github.com/prometheus/procfs v0.7.3 // indirect + golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce // indirect + golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect + google.golang.org/protobuf v1.26.0 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect +)