From c785e33caaa549965ddb54e6c0547f42b6d79389 Mon Sep 17 00:00:00 2001 From: michalbiesek Date: Fri, 18 Aug 2023 18:39:34 +0200 Subject: [PATCH 1/4] Bump `helm` version `3.12.3` Ref: https://github.com/helm/helm/releases/tag/v3.12.3 Signed-off-by: michalbiesek --- .github/workflows/pr.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 12df558..b119cf1 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -12,7 +12,7 @@ jobs: - name: Install Helm uses: azure/setup-helm@v3 with: - version: 3.11.3 + version: 3.12.3 - name: Install unittest plugin run: helm plugin install https://github.com/helm-unittest/helm-unittest --version 0.3.1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f54e493..a633eb1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: - name: Install Helm uses: azure/setup-helm@v3 with: - version: 3.9.4 + version: 3.12.3 - name: helm lint run: helm lint helm-chart-sources/* From 17e5481902732bdbed8fcaba199094952dae0ae7 Mon Sep 17 00:00:00 2001 From: michalbiesek Date: Fri, 18 Aug 2023 15:38:49 +0200 Subject: [PATCH 2/4] Bump `actions/checkout` v2->v3 Fix CI warning in 'release' action: ``` The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ ``` Signed-off-by: michalbiesek --- .github/workflows/pr.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index b119cf1..f9680af 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Helm uses: azure/setup-helm@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a633eb1..f00da7a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: GitHub slug uses: rlespinasse/github-slug-action@3.1.0 From aaaf1ea62c6cfafde98c482fd5557b01396a70c8 Mon Sep 17 00:00:00 2001 From: michalbiesek Date: Fri, 18 Aug 2023 15:33:56 +0200 Subject: [PATCH 3/4] Bump `rlespinasse/github-slug-action` to v4 Fix CI warning in 'release' action: ``` The following actions uses node12 which is deprecated and will be forced to run on node16: rlespinasse/github-slug-actionv3.1.0. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ ``` Signed-off-by: michalbiesek --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f00da7a..4e862fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,9 @@ jobs: uses: actions/checkout@v3 - name: GitHub slug - uses: rlespinasse/github-slug-action@3.1.0 + uses: rlespinasse/github-slug-action@v4 + with: + short-length: 8 - name: Make releases directory structure run: mkdir -p $GITHUB_WORKSPACE/${{ env.GITHUB_REF_SLUG }} From dadf8e5eb8d3c5f4a7065aaf92caa5504aa5b0a2 Mon Sep 17 00:00:00 2001 From: michalbiesek Date: Fri, 18 Aug 2023 19:31:05 +0200 Subject: [PATCH 4/4] Bump `kubeconform` to `0.6.3` Ref: https://github.com/yannh/kubeconform/releases/tag/v0.6.3 Signed-off-by: michalbiesek --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index f9680af..94bab3f 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -28,7 +28,7 @@ jobs: go-version: '>=1.19.0' - name: Install kubeconform - run: go install github.com/yannh/kubeconform/cmd/kubeconform@v0.6.2 + run: go install github.com/yannh/kubeconform/cmd/kubeconform@v0.6.3 - name: kubeconform run: ./scripts/kubeconform.sh