From 9f6c22932a918d865b9d1e9de1767c2b1fc36424 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 00:35:16 +0000 Subject: [PATCH] gha(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/validate.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 54491b4..377faec 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -19,7 +19,7 @@ jobs: name: Bicep build + lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Bicep CLI run: | curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64 @@ -42,7 +42,7 @@ jobs: run: working-directory: infra-terraform/infra steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: hashicorp/setup-terraform@v3 with: terraform_version: "1.10.0" @@ -58,7 +58,7 @@ jobs: name: Python compile + import check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v5 with: python-version: "3.11" @@ -74,7 +74,7 @@ jobs: name: Shellcheck + PSScriptAnalyzer runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install shellcheck run: sudo apt-get update && sudo apt-get install -y shellcheck - name: Run shellcheck on *.sh