From f2eaa08ced5b180dea87da692fbac21a8f120373 Mon Sep 17 00:00:00 2001 From: Max Radermacher Date: Wed, 11 Mar 2026 18:01:14 -0500 Subject: [PATCH] Upgrade to checkout@v6 --- .github/actions/clone-everything/action.yml | 6 +++--- .github/workflows/main.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/clone-everything/action.yml b/.github/actions/clone-everything/action.yml index 4731664488..149c0bc822 100644 --- a/.github/actions/clone-everything/action.yml +++ b/.github/actions/clone-everything/action.yml @@ -12,7 +12,7 @@ runs: steps: - id: checkout_repo name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Check out submodules through GitHub instead of from scratch later. # THIS STEP WILL FAIL if the current Pods commit is only available in Private. @@ -28,7 +28,7 @@ runs: # Checkout private pods repo iff we have an access token to read private repos - name: Checkout Private Pods - uses: actions/checkout@v4 + uses: actions/checkout@v6 if: ${{ steps.checkout_repo.outcome == 'failure' }} with: repository: signalapp/Signal-Pods-Private @@ -43,7 +43,7 @@ runs: run: echo "ref=$(git ls-tree --object-only HEAD SignalServiceKit/tests/MessageBackup/Signal-Message-Backup-Tests)" >> "$GITHUB_OUTPUT" - name: Checkout Signal-Message-Backup-Tests - uses: actions/checkout@v4 + uses: actions/checkout@v6 if: ${{ steps.checkout_repo.outcome == 'failure' }} with: repository: signalapp/Signal-Message-Backup-Tests diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1b100285ea..3aeeaafad0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,7 @@ jobs: run: | echo DEVELOPER_DIR=/Applications/${{matrix.xcode}}.app >> "$GITHUB_ENV" - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Check Xcode version run: | @@ -91,7 +91,7 @@ jobs: if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run genstrings run: Scripts/translation/auto-genstrings @@ -109,7 +109,7 @@ jobs: if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Fetch base commit run: git fetch origin --depth 1 ${{ github.base_ref }}