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