diff --git a/.github/workflows/compile-manual.yml b/.github/workflows/compile-manual.yml index 0c96029..9767626 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@v4 + uses: actions/checkout@v5 - 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 51f7cd3..aaa5e5f 100644 --- a/.github/workflows/functionnal-tests.yml +++ b/.github/workflows/functionnal-tests.yml @@ -8,13 +8,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - 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@v4 + uses: actions/checkout@v5 - name: Run the tests debian12 run: ./tests/docker_build_and_run_tests.sh debian12 diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index d04a512..2d429a5 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@v4 + uses: actions/checkout@v5 # BUILD THE .DEB PACKAGE - name: Build run: | diff --git a/.github/workflows/shellcheck_and_shellfmt.yml b/.github/workflows/shellcheck_and_shellfmt.yml index a7ba403..1539eb3 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@v4 + uses: actions/checkout@v5 - 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@v4 + uses: actions/checkout@v5 - 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 91587a8..d90dc2e 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@v4 + uses: actions/checkout@v5 with: ref: ${{ steps.vars.outputs.tag }} # GENERATE CHANGELOG CORRESPONDING TO ENTRY IN DEBIAN/CHANGELOG