From dcbf3fd06a22906ef37ec9532d4a029a5ecc35ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 22:01:14 +0000 Subject: [PATCH] build(deps): 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/compile-manual.yml | 2 +- .github/workflows/functionnal-tests.yml | 6 +++--- .github/workflows/pre-release.yml | 2 +- .github/workflows/shellcheck_and_shellfmt.yml | 4 ++-- .github/workflows/tagged-release.yml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/compile-manual.yml b/.github/workflows/compile-manual.yml index 9767626a..a622fbb4 100644 --- a/.github/workflows/compile-manual.yml +++ b/.github/workflows/compile-manual.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Produce debian man run: 'docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` pandoc/latex:2.6 MANUAL.md -s -t man > debian/cis-hardening.8' - uses: EndBug/add-and-commit@v9 diff --git a/.github/workflows/functionnal-tests.yml b/.github/workflows/functionnal-tests.yml index fc479f47..321ae424 100644 --- a/.github/workflows/functionnal-tests.yml +++ b/.github/workflows/functionnal-tests.yml @@ -8,20 +8,20 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run the tests debian11 run: ./tests/docker_build_and_run_tests.sh debian11 functionnal-tests-docker-debian12: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run the tests debian12 run: ./tests/docker_build_and_run_tests.sh debian12 functionnal-tests-docker-debian13: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run the tests debian13 run: ./tests/docker_build_and_run_tests.sh debian13 diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 2d429a58..c19af000 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -11,7 +11,7 @@ jobs: steps: # CHECKOUT CODE - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 # BUILD THE .DEB PACKAGE - name: Build run: | diff --git a/.github/workflows/shellcheck_and_shellfmt.yml b/.github/workflows/shellcheck_and_shellfmt.yml index 1539eb38..740001df 100644 --- a/.github/workflows/shellcheck_and_shellfmt.yml +++ b/.github/workflows/shellcheck_and_shellfmt.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run the sh-checker uses: luizm/action-sh-checker@v0.9.0 env: @@ -24,6 +24,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run shellcheck run: ./shellcheck/docker_build_and_run_shellcheck.sh diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index d90dc2e3..000b4dd8 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -15,7 +15,7 @@ jobs: run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} # CHECKOUT CODE - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ steps.vars.outputs.tag }} # GENERATE CHANGELOG CORRESPONDING TO ENTRY IN DEBIAN/CHANGELOG