From 8f5425b6d565271045d79b6dc764116d7deb3242 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 May 2025 22:36:04 +0000 Subject: [PATCH] build(deps): bump the actions group with 6 updates Bumps the actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [helm/kind-action](https://github.com/helm/kind-action) | `1.10.0` | `1.12.0` | | [azure/setup-helm](https://github.com/azure/setup-helm) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `5` | `6` | | [azure/setup-kubectl](https://github.com/azure/setup-kubectl) | `3` | `4` | | [cue-lang/setup-cue](https://github.com/cue-lang/setup-cue) | `1.0.0` | `1.0.1` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) Updates `helm/kind-action` from 1.10.0 to 1.12.0 - [Release notes](https://github.com/helm/kind-action/releases) - [Commits](https://github.com/helm/kind-action/compare/v1.10.0...v1.12.0) Updates `azure/setup-helm` from 3 to 4 - [Release notes](https://github.com/azure/setup-helm/releases) - [Changelog](https://github.com/Azure/setup-helm/blob/main/CHANGELOG.md) - [Commits](https://github.com/azure/setup-helm/compare/v3...v4) Updates `docker/build-push-action` from 5 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) Updates `azure/setup-kubectl` from 3 to 4 - [Release notes](https://github.com/azure/setup-kubectl/releases) - [Changelog](https://github.com/Azure/setup-kubectl/blob/main/CHANGELOG.md) - [Commits](https://github.com/azure/setup-kubectl/compare/v3...v4) Updates `cue-lang/setup-cue` from 1.0.0 to 1.0.1 - [Release notes](https://github.com/cue-lang/setup-cue/releases) - [Commits](https://github.com/cue-lang/setup-cue/compare/v1.0.0...v1.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: helm/kind-action dependency-version: 1.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: azure/setup-helm dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/build-push-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: azure/setup-kubectl dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: cue-lang/setup-cue dependency-version: 1.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/cve-scan.yml | 2 +- .github/workflows/e2e.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cve-scan.yml b/.github/workflows/cve-scan.yml index 407da44..22afb28 100644 --- a/.github/workflows/cve-scan.yml +++ b/.github/workflows/cve-scan.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build image id: build run: | diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 90f4b5e..ced10d8 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -16,7 +16,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Kubernetes - uses: helm/kind-action@v1.10.0 + uses: helm/kind-action@v1.12.0 with: cluster_name: kind - name: Build container image @@ -24,7 +24,7 @@ jobs: ./test/build.sh kind load docker-image test/podinfo:latest - name: Setup Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: version: v3.17.3 - name: Deploy @@ -52,7 +52,7 @@ jobs: - name: Setup Timoni uses: stefanprodan/timoni/actions/setup@main - name: Setup Kubernetes - uses: helm/kind-action@v1.10.0 + uses: helm/kind-action@v1.12.0 with: cluster_name: kind - name: Build container diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec03ed8..c5a5ed0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: with: go-version: 1.24.x - name: Setup Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: version: v3.17.3 - name: Setup QEMU @@ -79,7 +79,7 @@ jobs: type=raw,value=${{ steps.prep.outputs.VERSION }} type=raw,value=latest - name: Publish multi-arch image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: sbom: true provenance: true @@ -122,7 +122,7 @@ jobs: cosign sign ghcr.io/stefanprodan/charts/podinfo:${{ steps.prep.outputs.VERSION }} --yes cosign sign ghcr.io/stefanprodan/manifests/podinfo:${{ steps.prep.outputs.VERSION }} --yes - name: Publish base image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: push: true builder: ${{ steps.buildx.outputs.name }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa2bdf8..984a594 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,17 +27,17 @@ jobs: **/go.sum **/go.mod - name: Setup kubectl - uses: azure/setup-kubectl@v3 + uses: azure/setup-kubectl@v4 with: version: v${{ env.KUBERNETES_VERSION }} - name: Setup kubeconform uses: ./.github/actions/kubeconform - name: Setup Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: version: v${{ env.HELM_VERSION }} - name: Setup CUE - uses: cue-lang/setup-cue@v1.0.0 + uses: cue-lang/setup-cue@v1.0.1 - name: Setup Timoni uses: stefanprodan/timoni/actions/setup@v0.24.0 - name: Run unit tests