From 20bf51f65bd6f51bf0a2fe1b712b19f461ebe0f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 00:14:50 +0100 Subject: [PATCH] Bump actions/checkout from 2 to 3 (#145) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .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 d2cb0c9..b6ea163 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@v2 + uses: actions/checkout@v3 - 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@v8.0.2 diff --git a/.github/workflows/functionnal-tests.yml b/.github/workflows/functionnal-tests.yml index 5c123de..93d6f66 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@v2 + uses: actions/checkout@v3 - name: Run the tests debian9 run: ./tests/docker_build_and_run_tests.sh debian9 functionnal-tests-docker-debian10: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run the tests debian10 run: ./tests/docker_build_and_run_tests.sh debian10 functionnal-tests-docker-debian11: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run the tests debian11 run: ./tests/docker_build_and_run_tests.sh debian11 diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 68b73df..b529541 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@v2 + uses: actions/checkout@v3 # BUILD THE .DEB PACKAGE - name: Build run: | diff --git a/.github/workflows/shellcheck_and_shellfmt.yml b/.github/workflows/shellcheck_and_shellfmt.yml index 3a84d66..b6b509b 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@v2 + uses: actions/checkout@v3 - name: Run the sh-checker uses: luizm/action-sh-checker@v0.3.0 env: @@ -24,6 +24,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - 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 091929e..8bebde5 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -17,7 +17,7 @@ jobs: run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} # CHECKOUT CODE - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ steps.vars.outputs.tag }} # GENERATE CHANGELOG CORRESPONDING TO ENTRY IN DEBIAN/CHANGELOG