From f9acbe4d1b15fdec5237c6eb7414a047a45cd69e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 18:11:08 -0400 Subject: [PATCH] build(deps): bump actions/checkout from 4 to 7 (#4329) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7.
Release notes

Sourced from actions/checkout's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v6.0.3...v7.0.0

v6.0.3

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v6...v6.0.3

v6.0.2

What's Changed

Full Changelog: https://github.com/actions/checkout/compare/v6.0.1...v6.0.2

v6.0.1

What's Changed

Full Changelog: https://github.com/actions/checkout/compare/v6...v6.0.1

v6.0.0

What's Changed

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=4&new-version=7)](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 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)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/compiler-output-check.yaml | 4 ++-- .github/workflows/inform-pages-repo.yaml | 2 +- .github/workflows/linting.yaml | 6 +++--- .github/workflows/linux-build-clang.yaml | 4 ++-- .github/workflows/linux-build-gcc.yaml | 2 +- .github/workflows/macos-build-arm.yaml | 2 +- .github/workflows/macos-build.yaml | 4 ++-- .github/workflows/offline-tests.yaml | 2 +- .github/workflows/release-pipeline.yaml | 2 +- .github/workflows/update-controller-db.yaml | 2 +- .github/workflows/windows-build-clang.yaml | 4 ++-- .github/workflows/windows-build-msvc.yaml | 2 +- 12 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/compiler-output-check.yaml b/.github/workflows/compiler-output-check.yaml index b5eff5697e..db08001a95 100644 --- a/.github/workflows/compiler-output-check.yaml +++ b/.github/workflows/compiler-output-check.yaml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: master @@ -48,7 +48,7 @@ jobs: mv ./build ./build.master - name: Checkout PR - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: clean: "false" diff --git a/.github/workflows/inform-pages-repo.yaml b/.github/workflows/inform-pages-repo.yaml index 6ae8c864f6..1ad2cb3040 100644 --- a/.github/workflows/inform-pages-repo.yaml +++ b/.github/workflows/inform-pages-repo.yaml @@ -22,7 +22,7 @@ jobs: BUILDCACHE_LOG_FILE: ${{ github.workspace }}/buildcache.log steps: - name: Checkout Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Package Dependencies run: | diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index d2946551ff..0af3c57c39 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -16,7 +16,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Get Package Dependencies run: | @@ -37,7 +37,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check for Trailing Whitespace in goal_src run: python ./scripts/ci/lint-trailing-whitespace.py @@ -59,7 +59,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Python Dependencies run: pip install unidiff colorama diff --git a/.github/workflows/linux-build-clang.yaml b/.github/workflows/linux-build-clang.yaml index 94258f2d05..83d5b2702a 100644 --- a/.github/workflows/linux-build-clang.yaml +++ b/.github/workflows/linux-build-clang.yaml @@ -24,12 +24,12 @@ jobs: # minimal checkout if we're NOT uploading artifacts - name: Checkout Repository if: ${{ ! inputs.uploadArtifacts }} - uses: actions/checkout@v6 + uses: actions/checkout@v7 # full checkout with tags if we ARE uploading artifacts - name: Checkout Repository with Tags if: ${{ inputs.uploadArtifacts }} - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/linux-build-gcc.yaml b/.github/workflows/linux-build-gcc.yaml index 9faa32f602..3008d04071 100644 --- a/.github/workflows/linux-build-gcc.yaml +++ b/.github/workflows/linux-build-gcc.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Package Dependencies run: | diff --git a/.github/workflows/macos-build-arm.yaml b/.github/workflows/macos-build-arm.yaml index d50df2fed3..52d89308a7 100644 --- a/.github/workflows/macos-build-arm.yaml +++ b/.github/workflows/macos-build-arm.yaml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Package Dependencies env: diff --git a/.github/workflows/macos-build.yaml b/.github/workflows/macos-build.yaml index 4e06969c25..99f51a7983 100644 --- a/.github/workflows/macos-build.yaml +++ b/.github/workflows/macos-build.yaml @@ -24,12 +24,12 @@ jobs: # minimal checkout if we're NOT uploading artifacts - name: Checkout Repository if: ${{ ! inputs.uploadArtifacts }} - uses: actions/checkout@v6 + uses: actions/checkout@v7 # full checkout with tags if we ARE uploading artifacts - name: Checkout Repository with Tags if: ${{ inputs.uploadArtifacts }} - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/offline-tests.yaml b/.github/workflows/offline-tests.yaml index 06053b13d5..ada9c151b9 100644 --- a/.github/workflows/offline-tests.yaml +++ b/.github/workflows/offline-tests.yaml @@ -84,7 +84,7 @@ jobs: timeout-minutes: 60 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: ${{ github.repository }} ref: ${{ needs.validate-author.outputs.sha }} diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index 29189cbac2..f7697db675 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -102,7 +102,7 @@ jobs: name: "Upload Artifacts" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ needs.cut_release.outputs.new_tag }} diff --git a/.github/workflows/update-controller-db.yaml b/.github/workflows/update-controller-db.yaml index 6e4481f819..79295496d7 100644 --- a/.github/workflows/update-controller-db.yaml +++ b/.github/workflows/update-controller-db.yaml @@ -10,7 +10,7 @@ jobs: if: github.repository == 'open-goal/jak-project' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ secrets.BOT_PAT }} diff --git a/.github/workflows/windows-build-clang.yaml b/.github/workflows/windows-build-clang.yaml index 239c58b9a0..a97458e52a 100644 --- a/.github/workflows/windows-build-clang.yaml +++ b/.github/workflows/windows-build-clang.yaml @@ -25,12 +25,12 @@ jobs: # minimal checkout if we're NOT uploading artifacts - name: Checkout Repository if: ${{ ! inputs.uploadArtifacts }} - uses: actions/checkout@v6 + uses: actions/checkout@v7 # full checkout with tags if we ARE uploading artifacts - name: Checkout Repository with Tags if: ${{ inputs.uploadArtifacts }} - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/windows-build-msvc.yaml b/.github/workflows/windows-build-msvc.yaml index ce7699d78b..6459126dfe 100644 --- a/.github/workflows/windows-build-msvc.yaml +++ b/.github/workflows/windows-build-msvc.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install NASM # TODO - Simplify this with just the first command once choco 2.0 rolls out everywhere