Upgrade to checkout@v6
This commit is contained in:
parent
3640f95399
commit
f2eaa08ced
6
.github/actions/clone-everything/action.yml
vendored
6
.github/actions/clone-everything/action.yml
vendored
@ -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
|
||||
|
||||
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
@ -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 }}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user