From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:34:52 +0000 (+0000) Subject: build(deps): bump actions/checkout from 3 to 4 X-Git-Tag: rec-5.0.0-rc1~14^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F13539%2Fhead;p=thirdparty%2Fpdns.git build(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- diff --git a/.github/workflows/build-and-test-all.yml b/.github/workflows/build-and-test-all.yml index 5a02ba2f51..b1ffc975fc 100644 --- a/.github/workflows/build-and-test-all.yml +++ b/.github/workflows/build-and-test-all.yml @@ -39,7 +39,7 @@ jobs: run: working-directory: ./pdns-${{ env.BUILDER_VERSION }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -104,7 +104,7 @@ jobs: run: working-directory: ./pdns/recursordist/pdns-recursor-${{ env.BUILDER_VERSION }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -176,7 +176,7 @@ jobs: run: working-directory: ./pdns/dnsdistdist/dnsdist-${{ env.BUILDER_VERSION }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -263,7 +263,7 @@ jobs: options: >- --restart always steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -383,7 +383,7 @@ jobs: options: >- --restart always steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -415,7 +415,7 @@ jobs: ASAN_OPTIONS: detect_leaks=0 options: --sysctl net.ipv6.conf.all.disable_ipv6=0 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -453,7 +453,7 @@ jobs: TSAN_OPTIONS: "halt_on_error=1:suppressions=${{ env.REPO_HOME }}/pdns/recursordist/recursor-tsan.supp" options: --sysctl net.ipv6.conf.all.disable_ipv6=0 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -496,7 +496,7 @@ jobs: options: --sysctl net.ipv6.conf.all.disable_ipv6=0 steps: # - uses: PowerDNS/pdns/set-ubuntu-mirror@meta - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -539,7 +539,7 @@ jobs: TSAN_OPTIONS: "halt_on_error=1:suppressions=${{ env.REPO_HOME }}/pdns/recursordist/recursor-tsan.supp" options: --sysctl net.ipv6.conf.all.disable_ipv6=0 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -581,7 +581,7 @@ jobs: COVERAGE: yes options: --sysctl net.ipv6.conf.all.disable_ipv6=0 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -613,7 +613,7 @@ jobs: # options: --sysctl net.ipv6.conf.all.disable_ipv6=0 steps: - uses: PowerDNS/pdns/set-ubuntu-mirror@meta - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -645,7 +645,7 @@ jobs: run: "sudo snap install jq yq" - name: Fail job if any of the previous jobs failed run: "for i in `echo '${{ toJSON(needs) }}' | jq '.[].result' | tr -d '\"'`; do if [[ $i == 'failure' ]]; then echo '${{ toJSON(needs) }}'; exit 1; fi; done;" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive diff --git a/.github/workflows/build-packages.yml b/.github/workflows/build-packages.yml index 0c1eff5855..6f7eecdb11 100644 --- a/.github/workflows/build-packages.yml +++ b/.github/workflows/build-packages.yml @@ -78,7 +78,7 @@ jobs: pkghashes-ubuntu-jammy: ${{ steps.pkghashes.outputs.pkghashes-ubuntu-jammy }} srchashes: ${{ steps.srchashes.outputs.srchashes }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # for correct version numbers submodules: recursive diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index ca46b38d25..b91d238843 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -29,7 +29,7 @@ jobs: - amazon-2023 fail-fast: false steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # for correct version numbers submodules: recursive diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 3836440a34..50f53025ad 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -62,7 +62,7 @@ jobs: steps: - uses: PowerDNS/pdns/set-ubuntu-mirror@meta - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 82221b5dd8..6493b8529f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -18,7 +18,7 @@ jobs: matrix: product: ['auth', 'recursor', 'dnsdist'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index c4285310d7..eeaabe9263 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: PowerDNS/pdns/set-ubuntu-mirror@meta - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: build-scripts/gh-actions-setup-inv-no-dist-upgrade # this runs apt update - run: inv install-doc-deps - run: inv install-doc-deps-pdf diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml index 19bac0344a..cedeef1269 100644 --- a/.github/workflows/formatting.yml +++ b/.github/workflows/formatting.yml @@ -14,7 +14,7 @@ jobs: # on a ubuntu-20.04 VM runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 2dbd3a3422..a0295237d0 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -8,7 +8,7 @@ jobs: Fuzzing: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive diff --git a/.github/workflows/misc-dailies.yml b/.github/workflows/misc-dailies.yml index 07f50aa52a..90b84a94c5 100644 --- a/.github/workflows/misc-dailies.yml +++ b/.github/workflows/misc-dailies.yml @@ -31,7 +31,7 @@ jobs: if: ${{ vars.SCHEDULED_MISC_DAILIES }} runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -50,7 +50,7 @@ jobs: UNIT_TESTS: no steps: - uses: PowerDNS/pdns/set-ubuntu-mirror@meta - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -75,7 +75,7 @@ jobs: UNIT_TESTS: no steps: - uses: PowerDNS/pdns/set-ubuntu-mirror@meta - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive @@ -107,7 +107,7 @@ jobs: UNIT_TESTS: no steps: - uses: PowerDNS/pdns/set-ubuntu-mirror@meta - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive diff --git a/.github/workflows/secpoll.yml b/.github/workflows/secpoll.yml index e1e4463f9e..57278d7649 100644 --- a/.github/workflows/secpoll.yml +++ b/.github/workflows/secpoll.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: PowerDNS/pdns/set-ubuntu-mirror@meta - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 5 submodules: recursive