From 2a443fa96a602e8b2872007317af7cf4046937ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 06:18:19 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/shell-checker.yaml | 2 +- .github/workflows/shell-format.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/shell-checker.yaml b/.github/workflows/shell-checker.yaml index e9edb2b..8a44cc8 100644 --- a/.github/workflows/shell-checker.yaml +++ b/.github/workflows/shell-checker.yaml @@ -7,7 +7,7 @@ jobs: sh-checker: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Run the sh-checker uses: luizm/action-sh-checker@17bd25a6ee188d2b91f677060038f4ba37ba14b2 env: diff --git a/.github/workflows/shell-format.yaml b/.github/workflows/shell-format.yaml index f0227d5..7cd83da 100644 --- a/.github/workflows/shell-format.yaml +++ b/.github/workflows/shell-format.yaml @@ -17,7 +17,7 @@ jobs: run: | sudo apt-get install shfmt -y - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} - name: Format, Commit and Push Changes