From e51660dec7d95e947e023323ed442399f19b3098 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 10:28:38 +0000 Subject: [PATCH 1/2] chore(deps): update all-major-updates --- .github/workflows/lint-test.yaml | 4 ++-- .github/workflows/release.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index d2216aa..1714e19 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -12,14 +12,14 @@ jobs: fetch-depth: 0 - name: Set up Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: version: v3.10.3 # Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and # yamllint (https://github.com/adrienverge/yamllint) which require Python - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.9' check-latest: true diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9fee5eb..3cb4d7f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -23,7 +23,7 @@ jobs: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - name: Install Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: version: v3.13.3 @@ -41,7 +41,7 @@ jobs: # see https://github.com/helm/chart-releaser/issues/183 - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} From 83595d758d7c4dfa82b4dfd09659fc5b7b7917fe Mon Sep 17 00:00:00 2001 From: tuunit Date: Sat, 23 Nov 2024 11:40:30 +0100 Subject: [PATCH 2/2] chore(deps): remove unnecessary helm setup and update prometheus operator crd --- .github/workflows/lint-test.yaml | 9 ++------- .github/workflows/release.yaml | 7 +------ 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 1714e19..520dc3f 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -11,13 +11,8 @@ jobs: with: fetch-depth: 0 - - name: Set up Helm - uses: azure/setup-helm@v4 - with: - version: v3.10.3 - # Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and - # yamllint (https://github.com/adrienverge/yamllint) which require Python + # yamllint (https://github.com/adrienverge/yamllint) which requires Python - name: Set up Python uses: actions/setup-python@v5 with: @@ -44,7 +39,7 @@ jobs: - name: Install Prometheus Operator CRDs id: prom - run: kubectl apply --server-side -f https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/release-0.69/example/prometheus-operator-crd/monitoring.coreos.com_servicemonitors.yaml + run: kubectl apply --server-side -f https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/release-0.78/example/prometheus-operator-crd/monitoring.coreos.com_servicemonitors.yaml if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3cb4d7f..1613dad 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,11 +22,6 @@ jobs: git config user.name "$GITHUB_ACTOR" git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - - name: Install Helm - uses: azure/setup-helm@v4 - with: - version: v3.13.3 - - name: Add Helm repositories run: | helm repo add bitnami https://charts.bitnami.com/bitnami @@ -39,7 +34,7 @@ jobs: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" CR_GENERATE_RELEASE_NOTES: true - # see https://github.com/helm/chart-releaser/issues/183 + # See https://github.com/helm/chart-releaser/issues/183 - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: