From 82dd65c7c71f4a3d96ab351efd50c364ac2dc28a Mon Sep 17 00:00:00 2001 From: Matt Ray Date: Sat, 15 Jun 2024 09:12:24 +1000 Subject: [PATCH] Bump all the GitHub Action dependencies Signed-off-by: Matt Ray --- .github/workflows/helm-test.yml | 8 ++++---- .github/workflows/publish.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/helm-test.yml b/.github/workflows/helm-test.yml index 9575074..d12bdb6 100644 --- a/.github/workflows/helm-test.yml +++ b/.github/workflows/helm-test.yml @@ -18,13 +18,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - uses: azure/setup-helm@v3 with: - version: v3.10.0 + version: 'v3.15.2' - uses: actions/setup-python@v4 with: @@ -32,7 +32,7 @@ jobs: check-latest: true - name: Set up chart-testing - uses: helm/chart-testing-action@v2.3.1 + uses: helm/chart-testing-action@v2.6.1 - name: List changed charts id: list-changed @@ -49,7 +49,7 @@ jobs: run: ct lint --debug --config ./.github/configs/ct.yaml --lint-conf ./.github/configs/lintconf.yaml - name: Create kind cluster - uses: helm/kind-action@v1.4.0 + uses: helm/kind-action@v1.10.0 if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c9c5ee5..f14722b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -39,20 +39,20 @@ jobs: run: | helm-docs . - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${ GITHUB_REPOSITORY_OWNER } password: ${{ secrets.GITHUB_TOKEN }} - name: Run chart-releaser - uses: helm/chart-releaser-action@a917fd15b20e8b64b94d9158ad54cd6345335584 # v1.6.0 + uses: helm/chart-releaser-action@1.6.0 with: charts_dir: charts config: './.github/configs/cr.yaml' env: CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}' CR_RELEASE_NAME_TEMPLATE: '{{ .Version }}-helm' - - uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4 # v3.4.0 + - uses: sigstore/cosign-installer@3.5.0 - name: Push chart to GHCR env: COSIGN_EXPERIMENTAL: 1