Skip to content

Commit 5ae9a45

Browse files
move pkg/health out of registry-scanner (#995)
Signed-off-by: Ishita Sequeira <[email protected]>
1 parent d07cf71 commit 5ae9a45

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/ci-tests.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,9 @@ jobs:
140140
env:
141141
GNUPG_DISABLED: true
142142
run: |
143-
make test
143+
make test
144+
- name: Upload code coverage information to codecov.io
145+
uses: codecov/codecov-action@v5
146+
with:
147+
token: ${{ secrets.CODECOV_TOKEN }}
148+
files: coverage.out

cmd/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ import (
1212

1313
"github.com/argoproj-labs/argocd-image-updater/pkg/argocd"
1414
"github.com/argoproj-labs/argocd-image-updater/pkg/common"
15+
"github.com/argoproj-labs/argocd-image-updater/pkg/health"
1516
"github.com/argoproj-labs/argocd-image-updater/pkg/metrics"
1617
"github.com/argoproj-labs/argocd-image-updater/pkg/registry"
1718
"github.com/argoproj-labs/argocd-image-updater/pkg/version"
1819
"github.com/argoproj-labs/argocd-image-updater/registry-scanner/pkg/env"
19-
"github.com/argoproj-labs/argocd-image-updater/registry-scanner/pkg/health"
2020
"github.com/argoproj-labs/argocd-image-updater/registry-scanner/pkg/log"
2121

2222
"github.com/argoproj/argo-cd/v2/reposerver/askpass"
File renamed without changes.

0 commit comments

Comments
 (0)