From e3185350e84e8438d1c1001a7c07ea948524449e Mon Sep 17 00:00:00 2001 From: Patrick Dodgen Date: Wed, 5 Feb 2025 13:54:20 -0700 Subject: [PATCH 1/3] bump version of chart-releaser-action so that we can skip existing chart versions that are already uploaded --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 929e370..462874a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: uses: azure/setup-helm@v3 - name: Run chart-releaser - uses: helm/chart-releaser-action@v1.5.0 + uses: helm/chart-releaser-action@v1.7.0 with: skip_existing: true env: From 2adc5b75bfd2d17f3f70f3aab31fed1e794b304b Mon Sep 17 00:00:00 2001 From: Patrick Dodgen Date: Wed, 5 Feb 2025 14:06:28 -0700 Subject: [PATCH 2/3] bumping intel and collab version to force action to update --- charts/collab/Chart.yaml | 2 +- charts/intel/Chart.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/collab/Chart.yaml b/charts/collab/Chart.yaml index 83a7533..464c383 100644 --- a/charts/collab/Chart.yaml +++ b/charts/collab/Chart.yaml @@ -3,7 +3,7 @@ name: codetogether-collab description: CodeTogether Collab type: application -version: 1.2.0 +version: 1.2.1 appVersion: "2025.1.0" icon: https://www.codetogether.com/wp-content/uploads/2020/02/codetogether-circle-128.png diff --git a/charts/intel/Chart.yaml b/charts/intel/Chart.yaml index 30fa2c8..a844591 100644 --- a/charts/intel/Chart.yaml +++ b/charts/intel/Chart.yaml @@ -3,7 +3,7 @@ name: codetogether-intel description: CodeTogether Intel provides advanced project insights for developers type: application -version: 1.2.0 +version: 1.2.1 appVersion: "2025.1.0" icon: https://www.codetogether.com/wp-content/uploads/2020/02/codetogether-circle-128.png From 897ff4a7a65ef76006a0dc668f79d2ffba88cf54 Mon Sep 17 00:00:00 2001 From: Patrick Dodgen Date: Wed, 5 Feb 2025 14:09:51 -0700 Subject: [PATCH 3/3] fixing helm template check action --- .github/workflows/helm-template-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/helm-template-check.yml b/.github/workflows/helm-template-check.yml index 56a2947..5ebbc90 100644 --- a/.github/workflows/helm-template-check.yml +++ b/.github/workflows/helm-template-check.yml @@ -15,7 +15,7 @@ jobs: - name: Install Required Dependencies run: | - apt-get update && apt-get install -y unzip + sudo apt-get update && sudo apt-get install -y unzip - name: Install Helm uses: azure/setup-helm@v3