diff --git a/.github/workflows/codespell.yaml b/.github/workflows/codespell.yaml index f2bf1a5..34d32c0 100644 --- a/.github/workflows/codespell.yaml +++ b/.github/workflows/codespell.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Codespell uses: codespell-project/actions-codespell@master with: diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 15257cd..86ca837 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -7,21 +7,22 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4.0.0 with: version: v3.8.1 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: - python-version: 3.7 + python-version: '3.10' + check-latest: true - name: Set up chart-testing - uses: helm/chart-testing-action@v2.3.1 + uses: helm/chart-testing-action@v2.6.0 - name: Run chart-testing (list-changed) id: list-changed @@ -41,7 +42,7 @@ jobs: run: ct lint --config ct.yaml - name: Create kind cluster - uses: helm/kind-action@v1.4.0 + uses: helm/kind-action@v1 if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 6e11ada..0af4eff 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -11,7 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Lint Code Base uses: docker://github/super-linter:v3.12.0 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1fc34de..624dc04 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Fetch history run: git fetch --prune --unshallow @@ -21,9 +21,9 @@ jobs: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - name: Install Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4.0.0 - name: Run chart-releaser - uses: helm/chart-releaser-action@v1.5.0 + uses: helm/chart-releaser-action@v1.6.0 env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" diff --git a/charts/prometheus-artifactory-exporter/Chart.yaml b/charts/prometheus-artifactory-exporter/Chart.yaml index 2653b60..7532324 100644 --- a/charts/prometheus-artifactory-exporter/Chart.yaml +++ b/charts/prometheus-artifactory-exporter/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: "1.13.2" +appVersion: "1.14.0" description: A Helm chart for the Prometheus Artifactory Exporter name: prometheus-artifactory-exporter -version: 0.6.1 +version: 0.6.2 keywords: - metrics - artifactory diff --git a/charts/prometheus-artifactory-exporter/values.yaml b/charts/prometheus-artifactory-exporter/values.yaml index 9bc7b3b..f57682e 100644 --- a/charts/prometheus-artifactory-exporter/values.yaml +++ b/charts/prometheus-artifactory-exporter/values.yaml @@ -19,7 +19,7 @@ image: registry: ghcr.io repository: peimanja/artifactory_exporter # set to canary for the latest unreleased version - tag: v1.13.2 + tag: v1.14.0 pullPolicy: IfNotPresent nameOverride: "" @@ -50,6 +50,7 @@ options: # - artifacts # enables artifactory_artifacts_* metrics # - replication_status # adds the `status` label to `artifactory_replication_enabled` metric # - federation_status # enables `artifactory_federation_*` metrics + # - open_metrics # exposes pen Metrics from the JFrog Platform service: type: ClusterIP diff --git a/ct.yaml b/ct.yaml index b9212eb..7437232 100644 --- a/ct.yaml +++ b/ct.yaml @@ -5,4 +5,3 @@ chart-dirs: - charts chart-repos: - peimanja=https://peimanja.github.io/helm-charts -helm-extra-args: --timeout 600s