From 08706af2019f0c56a163c07631daf55beef86440 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Jun 2024 09:16:53 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.3 to 4.1.7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.3 to 4.1.7. - [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/1d96c772d19495a3b5c517cd2bc0cb401ea0529f...692973e3d937129bcbf40652eb9f2f61becf3332) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build_test.yml | 4 ++-- .github/workflows/build_test_bazel.yml | 2 +- .github/workflows/build_test_cross.yml | 2 +- .github/workflows/build_test_msys2.yml | 2 +- .github/workflows/build_test_wasm.yml | 2 +- .github/workflows/codeql.yml | 4 ++-- .github/workflows/conformance.yml | 6 +++--- .github/workflows/debug_ci.yml | 2 +- .github/workflows/dependency-review.yml | 2 +- .github/workflows/fuzz.yml | 2 +- .github/workflows/gitlab_mirror.yml | 2 +- .github/workflows/pages.yml | 2 +- .github/workflows/pull_request.yml | 4 ++-- .github/workflows/release.yaml | 6 +++--- .github/workflows/scorecard.yml | 2 +- .github/workflows/test_new_highway.yml | 2 +- 16 files changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index ebaee40f8..02b06050d 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -191,7 +191,7 @@ jobs: brew install binutils ccache coreutils google-benchmark googletest ninja sdl2 - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 2 @@ -223,7 +223,7 @@ jobs: - name: Checkout the LLVM source if: matrix.name == 'msan' && env.WILL_BUILD == 'true' - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: false repository: llvm/llvm-project diff --git a/.github/workflows/build_test_bazel.yml b/.github/workflows/build_test_bazel.yml index e26f473e7..c66ee0adb 100644 --- a/.github/workflows/build_test_bazel.yml +++ b/.github/workflows/build_test_bazel.yml @@ -37,7 +37,7 @@ jobs: egress-policy: audit - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 1 diff --git a/.github/workflows/build_test_cross.yml b/.github/workflows/build_test_cross.yml index 4ac84bebd..e1743e524 100644 --- a/.github/workflows/build_test_cross.yml +++ b/.github/workflows/build_test_cross.yml @@ -89,7 +89,7 @@ jobs: apt-get install -y ca-certificates debian-ports-archive-keyring git python3 - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 1 diff --git a/.github/workflows/build_test_msys2.yml b/.github/workflows/build_test_msys2.yml index eed7caa6c..e949af3d7 100644 --- a/.github/workflows/build_test_msys2.yml +++ b/.github/workflows/build_test_msys2.yml @@ -52,7 +52,7 @@ jobs: egress-policy: audit - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 1 diff --git a/.github/workflows/build_test_wasm.yml b/.github/workflows/build_test_wasm.yml index 1adc1d30e..b9cb55ada 100644 --- a/.github/workflows/build_test_wasm.yml +++ b/.github/workflows/build_test_wasm.yml @@ -46,7 +46,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 1 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5491681ef..96771c9fd 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -56,7 +56,7 @@ jobs: egress-policy: audit - name: Checkout repository - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL @@ -98,7 +98,7 @@ jobs: echo "CC=${{ matrix.cc || 'clang' }}" >> $GITHUB_ENV echo "CXX=${{ matrix.cxx || 'clang++' }}" >> $GITHUB_ENV - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 2 diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 16733ee38..f8a52727e 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -39,7 +39,7 @@ jobs: egress-policy: audit - name: Checkout the conformance source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: repository: libjxl/conformance ref: ${{ env.CONFORMANCE_REPO_HASH }} @@ -113,7 +113,7 @@ jobs: echo "CC=clang" >> $GITHUB_ENV echo "CXX=clang++" >> $GITHUB_ENV - name: Checkout the jxl source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 2 @@ -185,7 +185,7 @@ jobs: run: | pip install numpy - name: Checkout the conformance source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: repository: libjxl/conformance ref: ${{ env.CONFORMANCE_REPO_HASH }} diff --git a/.github/workflows/debug_ci.yml b/.github/workflows/debug_ci.yml index a05ead29f..76a34c31c 100644 --- a/.github/workflows/debug_ci.yml +++ b/.github/workflows/debug_ci.yml @@ -124,7 +124,7 @@ jobs: echo "CC=${{ matrix.c_compiler || 'clang-11' }}" >> $GITHUB_ENV echo "CXX=${{ matrix.cxx_compiler || 'clang++-11' }}" >> $GITHUB_ENV - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 1 diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 57c7be298..44620b75c 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -32,6 +32,6 @@ jobs: egress-policy: audit - name: 'Checkout Repository' - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: 'Dependency Review' uses: actions/dependency-review-action@5bbc3ba658137598168acb2ab73b21c432dd411b # v4.2.5 diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index a490176dd..d3e5ff89d 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -38,7 +38,7 @@ jobs: egress-policy: audit - name: Checkout source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 id: checkout with: # The build_fuzzers action checks out the code to the storage/libjxl diff --git a/.github/workflows/gitlab_mirror.yml b/.github/workflows/gitlab_mirror.yml index 76ff332f8..d6ea61454 100644 --- a/.github/workflows/gitlab_mirror.yml +++ b/.github/workflows/gitlab_mirror.yml @@ -33,7 +33,7 @@ jobs: egress-policy: audit - name: Checkout source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 # Disable shallow clone diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index f7ebf94ff..03c3aec21 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 2 diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index b17f47049..b6ce97c9c 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -30,7 +30,7 @@ jobs: egress-policy: audit - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Check AUTHORS file # This is an optional check continue-on-error: True @@ -56,7 +56,7 @@ jobs: clang-format-15 \ # - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Install buildifier run: | eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fdb216611..9b7cf075f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -72,7 +72,7 @@ jobs: echo "CXX=clang++" >> $GITHUB_ENV - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 1 @@ -163,7 +163,7 @@ jobs: git config --global --add safe.directory /__w/libjxl/libjxl - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 1 @@ -272,7 +272,7 @@ jobs: egress-policy: audit - name: Checkout the source - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: true fetch-depth: 2 diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 5000695e3..e6dde00c4 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -39,7 +39,7 @@ jobs: egress-policy: audit - name: "Checkout code" - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: persist-credentials: false diff --git a/.github/workflows/test_new_highway.yml b/.github/workflows/test_new_highway.yml index a4cb37036..4a37275a2 100644 --- a/.github/workflows/test_new_highway.yml +++ b/.github/workflows/test_new_highway.yml @@ -34,7 +34,7 @@ jobs: egress-policy: audit - name: 'Cloning libjxl' - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: submodules: recursive persist-credentials: false # otherwise, the wrong auhtentication is used in the push