From 43afe59f60de47f2ccc9d7ef60cea0421becd1a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 08:54:10 +0900 Subject: [PATCH] MINOR: [CI] Bump actions/checkout from 3 to 4 (#37551) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
Release notes

Sourced from actions/checkout's releases.

v4.0.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v3...v4.0.0

v3.6.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v3.5.3...v3.6.0

v3.5.3

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v3...v3.5.3

v3.5.2

What's Changed

Full Changelog: https://github.com/actions/checkout/compare/v3.5.1...v3.5.2

v3.5.1

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v4.0.0

v3.6.0

v3.5.3

v3.5.2

v3.5.1

v3.5.0

v3.4.0

v3.3.0

v3.2.0

v3.1.0

v3.0.2

v3.0.1

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@ dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@ dependabot rebase` will rebase this PR - `@ dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@ dependabot merge` will merge this PR after your CI passes on it - `@ dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@ dependabot cancel merge` will cancel a previously requested merge and block automerging - `@ dependabot reopen` will reopen this PR if it is closed - `@ dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@ dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@ dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@ dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@ dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Lead-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Raúl Cumplido Signed-off-by: Sutou Kouhei --- .github/workflows/archery.yml | 2 +- .github/workflows/comment_bot.yml | 6 +++--- .github/workflows/cpp.yml | 10 +++++----- .github/workflows/csharp.yml | 6 +++--- .github/workflows/dev.yml | 4 ++-- .github/workflows/dev_pr.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/docs_light.yml | 2 +- .github/workflows/go.yml | 18 +++++++++--------- .github/workflows/integration.yml | 4 ++-- .github/workflows/java.yml | 6 +++--- .github/workflows/java_jni.yml | 4 ++-- .github/workflows/java_nightly.yml | 4 ++-- .github/workflows/js.yml | 6 +++--- .github/workflows/matlab.yml | 6 +++--- .github/workflows/pr_bot.yml | 2 +- .github/workflows/python.yml | 4 ++-- .github/workflows/r.yml | 8 ++++---- .github/workflows/r_nightly.yml | 4 ++-- .github/workflows/ruby.yml | 6 +++--- .github/workflows/swift.yml | 2 +- dev/tasks/docs/github.linux.yml | 2 +- dev/tasks/macros.jinja | 4 ++-- 23 files changed, 57 insertions(+), 57 deletions(-) diff --git a/.github/workflows/archery.yml b/.github/workflows/archery.yml index d337ec797cf90..bc11bb42366e2 100644 --- a/.github/workflows/archery.yml +++ b/.github/workflows/archery.yml @@ -50,7 +50,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Git Fixup diff --git a/.github/workflows/comment_bot.yml b/.github/workflows/comment_bot.yml index 43eb86ebe9434..cc9e02d955afd 100644 --- a/.github/workflows/comment_bot.yml +++ b/.github/workflows/comment_bot.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: arrow # fetch the tags for version number generation @@ -60,7 +60,7 @@ jobs: if: startsWith(github.event.comment.body, '@github-actions autotune') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: r-lib/actions/pr-fetch@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -158,7 +158,7 @@ jobs: if: startsWith(github.event.comment.body, '@github-actions rebase') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: r-lib/actions/pr-fetch@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index bf110c87b5fec..fc8d0bad58e9f 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -96,7 +96,7 @@ jobs: UBUNTU: ${{ matrix.ubuntu }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -138,7 +138,7 @@ jobs: timeout-minutes: 45 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -186,7 +186,7 @@ jobs: sysctl -a | grep cpu sysctl -a | grep "hw.optional" - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -290,7 +290,7 @@ jobs: - name: Install Dependencies run: choco install -y --no-progress openssl - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -393,7 +393,7 @@ jobs: /d 1 ` /f - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive diff --git a/.github/workflows/csharp.yml b/.github/workflows/csharp.yml index 2a739e6f95bde..3d1e513bc609c 100644 --- a/.github/workflows/csharp.yml +++ b/.github/workflows/csharp.yml @@ -53,7 +53,7 @@ jobs: with: dotnet-version: ${{ matrix.dotnet }} - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Source Link @@ -81,7 +81,7 @@ jobs: with: dotnet-version: ${{ matrix.dotnet }} - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Source Link @@ -108,7 +108,7 @@ jobs: with: dotnet-version: ${{ matrix.dotnet }} - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Source Link diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 119d11d9a399a..f97c499890191 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -37,7 +37,7 @@ jobs: if: ${{ !contains(github.event.pull_request.title, 'WIP') }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Python @@ -84,7 +84,7 @@ jobs: GIT_COMMITTER_EMAIL: github@actions steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Python diff --git a/.github/workflows/dev_pr.yml b/.github/workflows/dev_pr.yml index 23db5e0f53bbd..e5d2a77c5a8a2 100644 --- a/.github/workflows/dev_pr.yml +++ b/.github/workflows/dev_pr.yml @@ -43,7 +43,7 @@ jobs: name: Process runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: apache/arrow ref: main diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a4629001f8e48..a1ac4c3067dae 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -38,7 +38,7 @@ jobs: UBUNTU: "22.04" steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Free up disk space diff --git a/.github/workflows/docs_light.yml b/.github/workflows/docs_light.yml index 21185b746eee7..74e6eabe24795 100644 --- a/.github/workflows/docs_light.yml +++ b/.github/workflows/docs_light.yml @@ -47,7 +47,7 @@ jobs: PYTHON: "3.9" steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Cache Docker Volumes diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index df4f1207ee842..c31ad0b77c2df 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -78,7 +78,7 @@ jobs: STATICCHECK: ${{ matrix.staticcheck }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -139,7 +139,7 @@ jobs: timeout-minutes: 20 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Go @@ -172,7 +172,7 @@ jobs: STATICCHECK: ${{ matrix.staticcheck }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -219,7 +219,7 @@ jobs: STATICCHECK: ${{ matrix.staticcheck }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Python @@ -261,7 +261,7 @@ jobs: staticcheck: v0.3.3 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -296,7 +296,7 @@ jobs: staticcheck: v0.3.3 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -359,7 +359,7 @@ jobs: ARROW_GO_TESTCGO: "1" steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -409,7 +409,7 @@ jobs: /d 1 ` /f - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -451,7 +451,7 @@ jobs: timeout-minutes: 60 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 62b61c29bc0ae..430b0bb2822e7 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -62,12 +62,12 @@ jobs: timeout-minutes: 60 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive - name: Checkout Arrow Rust - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: apache/arrow-rs path: rust diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 49e500b42083f..4c144955fbe93 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -80,7 +80,7 @@ jobs: MAVEN: ${{ matrix.maven }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -129,7 +129,7 @@ jobs: distribution: 'zulu' java-version: ${{ matrix.jdk }} - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -156,7 +156,7 @@ jobs: java-version: ${{ matrix.jdk }} distribution: 'temurin' - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive diff --git a/.github/workflows/java_jni.yml b/.github/workflows/java_jni.yml index 2bfc7c82c25da..0e75468cd374b 100644 --- a/.github/workflows/java_jni.yml +++ b/.github/workflows/java_jni.yml @@ -56,7 +56,7 @@ jobs: timeout-minutes: 90 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -96,7 +96,7 @@ jobs: timeout-minutes: 90 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive diff --git a/.github/workflows/java_nightly.yml b/.github/workflows/java_nightly.yml index 5dfef4626597f..4440d36d18f73 100644 --- a/.github/workflows/java_nightly.yml +++ b/.github/workflows/java_nightly.yml @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 path: arrow @@ -51,7 +51,7 @@ jobs: ref: main submodules: recursive - name: Checkout Crossbow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 path: crossbow diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 7e8ef31b49cb6..9be11596d845f 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -47,7 +47,7 @@ jobs: timeout-minutes: 60 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Python @@ -87,7 +87,7 @@ jobs: node: [18] steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Jest Cache @@ -117,7 +117,7 @@ jobs: node: [18] steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Jest Cache diff --git a/.github/workflows/matlab.yml b/.github/workflows/matlab.yml index 427bb813fdbe9..221ed5c77cd47 100644 --- a/.github/workflows/matlab.yml +++ b/.github/workflows/matlab.yml @@ -46,7 +46,7 @@ jobs: if: ${{ !contains(github.event.pull_request.title, 'WIP') }} steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install ninja-build @@ -92,7 +92,7 @@ jobs: if: ${{ !contains(github.event.pull_request.title, 'WIP') }} steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install ninja-build @@ -130,7 +130,7 @@ jobs: if: ${{ !contains(github.event.pull_request.title, 'WIP') }} steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install MATLAB diff --git a/.github/workflows/pr_bot.yml b/.github/workflows/pr_bot.yml index 9d0d7ec88b857..617f3f2e017a3 100644 --- a/.github/workflows/pr_bot.yml +++ b/.github/workflows/pr_bot.yml @@ -73,7 +73,7 @@ jobs: curl -sL -o committers.yml $url echo "committers_path=$(pwd)/committers.yml" >> $GITHUB_OUTPUT - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: arrow repository: apache/arrow diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 76f76411b6e11..7a8fd8d10c235 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -89,7 +89,7 @@ jobs: NUMPY: ${{ matrix.numpy || 'latest' }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -156,7 +156,7 @@ jobs: MACOSX_DEPLOYMENT_TARGET: 10.15 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive diff --git a/.github/workflows/r.yml b/.github/workflows/r.yml index 3e3a4f856e4c5..a8680aea56d48 100644 --- a/.github/workflows/r.yml +++ b/.github/workflows/r.yml @@ -68,7 +68,7 @@ jobs: UBUNTU: ${{ matrix.ubuntu }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -139,7 +139,7 @@ jobs: DEVTOOLSET_VERSION: ${{ matrix.config.devtoolset }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -197,7 +197,7 @@ jobs: steps: - run: git config --global core.autocrlf false - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup ccache @@ -250,7 +250,7 @@ jobs: steps: - run: git config --global core.autocrlf false - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - run: mkdir r/windows diff --git a/.github/workflows/r_nightly.yml b/.github/workflows/r_nightly.yml index 0b16c16e9430d..7f21d4658e007 100644 --- a/.github/workflows/r_nightly.yml +++ b/.github/workflows/r_nightly.yml @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 path: arrow @@ -53,7 +53,7 @@ jobs: ref: main submodules: recursive - name: Checkout Crossbow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 path: crossbow diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 33f0c5b89c139..2e4b98c2428e9 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -71,7 +71,7 @@ jobs: UBUNTU: ${{ matrix.ubuntu }} steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -142,7 +142,7 @@ jobs: XML_CATALOG_FILES: /usr/local/etc/xml/catalog steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive @@ -245,7 +245,7 @@ jobs: /d 1 ` /f - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index b2ee3f0b3cab3..825921ac6fa24 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -51,7 +51,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive diff --git a/dev/tasks/docs/github.linux.yml b/dev/tasks/docs/github.linux.yml index 6de297b663e01..8ab8a593c3ef3 100644 --- a/dev/tasks/docs/github.linux.yml +++ b/dev/tasks/docs/github.linux.yml @@ -40,7 +40,7 @@ jobs: {{ image }} \ {{ command|default("") }} - name: Checkout Crossbow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: {{ default_branch|default("main") }} path: crossbow diff --git a/dev/tasks/macros.jinja b/dev/tasks/macros.jinja index 8ec351a270c74..06b9390c0f974 100644 --- a/dev/tasks/macros.jinja +++ b/dev/tasks/macros.jinja @@ -27,7 +27,7 @@ on: {%- macro github_checkout_arrow(fetch_depth=1, submodules="recursive") -%} - name: Checkout Arrow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: {{ fetch_depth }} path: arrow @@ -96,7 +96,7 @@ on: python3-pip sudo python3 -m pip install --upgrade pip - name: Checkout Crossbow - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: crossbow ref: {{ job.branch }}