From 05831b49c905ab040859d9ff786e4f1ddd1dedbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 08:14:06 +0000 Subject: [PATCH] github-actions(deps): bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [helm/kind-action](https://github.com/helm/kind-action) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 5 to 6 - [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/v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `helm/kind-action` from 1.12.0 to 1.13.0 - [Release notes](https://github.com/helm/kind-action/releases) - [Commits](https://github.com/helm/kind-action/compare/v1.12.0...v1.13.0) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: helm/kind-action dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-unit-tests.yml | 2 +- .github/workflows/dependabot.yaml | 2 +- .github/workflows/helm-validation.yml | 6 +++--- .github/workflows/kustomize-validation.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-and-unit-tests.yml b/.github/workflows/build-and-unit-tests.yml index 7357d18..4f9c0f7 100644 --- a/.github/workflows/build-and-unit-tests.yml +++ b/.github/workflows/build-and-unit-tests.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Go uses: actions/setup-go@v6 diff --git a/.github/workflows/dependabot.yaml b/.github/workflows/dependabot.yaml index 31e976c..d100a63 100644 --- a/.github/workflows/dependabot.yaml +++ b/.github/workflows/dependabot.yaml @@ -28,7 +28,7 @@ jobs: uses: dependabot/fetch-metadata@v2 - name: checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: lfs: true diff --git a/.github/workflows/helm-validation.yml b/.github/workflows/helm-validation.yml index 0d2efe9..53ec5da 100644 --- a/.github/workflows/helm-validation.yml +++ b/.github/workflows/helm-validation.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Login to Registry uses: docker/login-action@v3 @@ -46,7 +46,7 @@ jobs: - name: Restore Cached Docker Images id: cache_docker_images - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.docker_cache key: docker-${{ runner.os }}-${{ matrix.ring_version }}-${{ env.CLOUDSERVER_IMAGE }} @@ -60,7 +60,7 @@ jobs: version: v3.16.3 - name: Create Kind Cluster - uses: helm/kind-action@v1.12.0 + uses: helm/kind-action@v1.13.0 with: version: v0.21.0 wait: 90s diff --git a/.github/workflows/kustomize-validation.yml b/.github/workflows/kustomize-validation.yml index f2c42a9..3175781 100644 --- a/.github/workflows/kustomize-validation.yml +++ b/.github/workflows/kustomize-validation.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Login to Registry uses: docker/login-action@v3 @@ -46,7 +46,7 @@ jobs: - name: Restore Cached Docker Images id: cache_docker_images - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.docker_cache key: docker-${{ runner.os }}-${{ matrix.ring_version }}-${{ env.CLOUDSERVER_IMAGE }} @@ -55,7 +55,7 @@ jobs: docker-${{ runner.os }}- - name: Create k8s KIND Cluster - uses: helm/kind-action@v1.12.0 + uses: helm/kind-action@v1.13.0 with: version: v0.21.0 wait: 90s diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a6f46dd..740db6e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: needs: [prod-container-with-docker, package-helm-chart] steps: - name: Check out repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Create GitHub Release uses: softprops/action-gh-release@v2 @@ -46,7 +46,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Helm uses: azure/setup-helm@v4.3.1 @@ -61,7 +61,7 @@ jobs: helm package ./helm/scality-cosi-driver --version ${{ inputs.tag }} --app-version ${{ inputs.tag }} - name: Upload Helm Chart as Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: helm-chart path: scality-cosi-driver-${{ inputs.tag }}.tgz