From 78779ee1af79f75c80e9d5c801814ad61e7d36fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 09:26:55 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/readme-checker.yaml | 2 +- .github/workflows/shell-checker.yaml | 2 +- .github/workflows/shell-format.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/readme-checker.yaml b/.github/workflows/readme-checker.yaml index 8b99c01..c8ecbcb 100644 --- a/.github/workflows/readme-checker.yaml +++ b/.github/workflows/readme-checker.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Markdown Lint uses: DavidAnson/markdownlint-cli2-action@992badcdf24e3b8eb7e87ff9287fe931bcb00c6e with: diff --git a/.github/workflows/shell-checker.yaml b/.github/workflows/shell-checker.yaml index 5589b6d..e9edb2b 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@v4 + - uses: actions/checkout@v5 - 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 bdaa553..f0227d5 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@v4 + uses: actions/checkout@v5 with: ref: ${{ github.head_ref }} - name: Format, Commit and Push Changes