From b0a9769103605229e2bfae7ae7c52888ac6cc8af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 04:21:42 +0000 Subject: [PATCH] build(deps): 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/build.yml | 10 +++++----- .github/workflows/checkpatch.yml | 2 +- .github/workflows/coverage.yml | 2 +- .github/workflows/docs.yaml | 2 +- .github/workflows/release-python.yml | 4 ++-- .github/workflows/release.yml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d9c678da5..9f5b06daa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: container: image: ghcr.io/linux-nvme/debian.python:latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: build run: | scripts/build.sh -b ${{ matrix.buildtype }} -c ${{ matrix.compiler }} -x @@ -40,7 +40,7 @@ jobs: - arch: s390x - arch: ppc64le steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: enable foreign arch uses: dbhi/qus/action@main - name: Login to GitHub Container Registry @@ -73,7 +73,7 @@ jobs: container: image: ghcr.io/linux-nvme/debian:latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: build run: | scripts/build.sh -b release -c gcc libdbus @@ -92,7 +92,7 @@ jobs: image: ghcr.io/linux-nvme/debian:latest if: github.ref == 'refs/heads/master' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: build run: | scripts/build.sh -b release -c gcc fallback @@ -109,7 +109,7 @@ jobs: container: image: ghcr.io/linux-nvme/debian:latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: build run: | scripts/build.sh -m muon diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml index c0a09b765..06c60c876 100644 --- a/.github/workflows/checkpatch.yml +++ b/.github/workflows/checkpatch.yml @@ -7,7 +7,7 @@ jobs: steps: - name: 'Calculate PR commits + 1' run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> $GITHUB_ENV - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 752f4743f..cc585867b 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -13,7 +13,7 @@ jobs: container: image: ghcr.io/linux-nvme/debian.python:latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: build run: | scripts/build.sh coverage diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index d5687f0b6..73b7ec420 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -16,7 +16,7 @@ jobs: container: image: ghcr.io/linux-nvme/debian:latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: build run: | scripts/build.sh docs diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 3ec91ff0e..812ac6086 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -21,7 +21,7 @@ jobs: container: image: ghcr.io/linux-nvme/debian.python:latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Allow workspace run: | @@ -49,7 +49,7 @@ jobs: image: ghcr.io/linux-nvme/debian.python:latest steps: - name: Check out repository (with tags) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Required for `git describe` diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d4ef03859..f1e373f73 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ncipollo/release-action@v1 with: token: ${{ secrets.GITHUB_TOKEN }}