From 49eab73c14e8d55c7450fa9765a061ddc7c5104b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jun 2026 08:39:59 +0000 Subject: [PATCH] chore(deps): bump the actions-deps group with 2 updates Bumps the actions-deps group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4 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/v4...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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-self-test.yml | 12 ++++++------ .github/workflows/docker-build.yml | 2 +- .github/workflows/docs-check.yml | 6 +++--- .github/workflows/helm-deploy.yml | 4 ++-- .github/workflows/terraform.yml | 8 ++++---- .github/workflows/trivy-scan.yml | 2 +- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci-self-test.yml b/.github/workflows/ci-self-test.yml index 50bb216..dc8d5ef 100644 --- a/.github/workflows/ci-self-test.yml +++ b/.github/workflows/ci-self-test.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install yq run: | @@ -80,7 +80,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install yq run: | @@ -117,7 +117,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install all tools uses: ./actions/setup-tooling @@ -153,7 +153,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Post test comment uses: ./actions/pr-comment @@ -173,7 +173,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Create synthetic tfplan.json run: | @@ -221,7 +221,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check examples reference @main or a version tag run: | diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index c0d0f03..fb23acf 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -72,7 +72,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Assume AWS role (ECR only) if: inputs.registry == 'ecr' diff --git a/.github/workflows/docs-check.yml b/.github/workflows/docs-check.yml index 554e9fe..5693f5a 100644 --- a/.github/workflows/docs-check.yml +++ b/.github/workflows/docs-check.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Verify each action has a README run: | @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Verify all actions are documented in docs/actions.md run: | @@ -84,7 +84,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install yq run: | diff --git a/.github/workflows/helm-deploy.yml b/.github/workflows/helm-deploy.yml index 954a4d2..a8a37bf 100644 --- a/.github/workflows/helm-deploy.yml +++ b/.github/workflows/helm-deploy.yml @@ -91,7 +91,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Helm uses: kernelpanic09/github-actions-platform/actions/setup-tooling@main @@ -139,7 +139,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Helm uses: kernelpanic09/github-actions-platform/actions/setup-tooling@main diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index d3949eb..98c0508 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -60,7 +60,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Assume AWS role uses: kernelpanic09/github-actions-platform/actions/aws-oidc-assume@main @@ -74,7 +74,7 @@ jobs: terraform_version: ${{ inputs.terraform_version }} - name: Cache .terraform directory - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ inputs.working_directory }}/.terraform # Cache key includes the lockfile so a provider version bump busts the cache @@ -158,7 +158,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Assume AWS role uses: kernelpanic09/github-actions-platform/actions/aws-oidc-assume@main @@ -172,7 +172,7 @@ jobs: terraform_version: ${{ inputs.terraform_version }} - name: Restore .terraform cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ inputs.working_directory }}/.terraform key: terraform-${{ inputs.working_directory }}-${{ hashFiles(format('{0}/.terraform.lock.hcl', inputs.working_directory)) }} diff --git a/.github/workflows/trivy-scan.yml b/.github/workflows/trivy-scan.yml index da8afe4..a6fc073 100644 --- a/.github/workflows/trivy-scan.yml +++ b/.github/workflows/trivy-scan.yml @@ -51,7 +51,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Trivy uses: kernelpanic09/github-actions-platform/actions/setup-tooling@main