Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
sparse-checkout: |
/*
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
sparse-checkout: |
/*
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
sparse-checkout: |
/*
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
sparse-checkout: |
/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-relay.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
ALCHEMY_TELEMETRY_DISABLED: "1"
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
sparse-checkout: |
/*
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
APNS_PRIVATE_KEY: ${{ secrets.APNS_PRIVATE_KEY }}

- name: Publish relay deploy commit status
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const result = "${{ steps.deploy.outputs.result }}";
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Ensure managed issue labels exist
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const managedLabels = [
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mobile-eas-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Checkout
if: steps.expo-token.outputs.present == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
# No sparse-checkout here: it makes actions/checkout fetch with
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Setup EAS
if: steps.expo-token.outputs.present == 'true'
uses: expo/expo-github-action@v8
uses: expo/expo-github-action@v9
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand All @@ -82,7 +82,7 @@ jobs:

- name: Deploy with fingerprint check
if: steps.expo-token.outputs.present == 'true'
uses: expo/expo-github-action/continuous-deploy-fingerprint@main
uses: expo/expo-github-action/continuous-deploy-fingerprint@v9
env:
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mobile-eas-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Checkout
if: steps.expo-token.outputs.present == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
# No sparse-checkout here: it makes actions/checkout fetch with
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Setup EAS
if: steps.expo-token.outputs.present == 'true'
uses: expo/expo-github-action@v8
uses: expo/expo-github-action@v9
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mobile-showcase-screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
sparse-checkout: |
/*
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
T3_SHOWCASE_ANDROID_ABI: x86_64
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
sparse-checkout: |
/*
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
java-version: 17

- name: Setup Gradle cache
uses: gradle/actions/setup-gradle@v5
uses: gradle/actions/setup-gradle@v6

- name: Enable KVM
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- id: config
name: Build PR size label config
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
issues: write
steps:
- name: Ensure PR size labels exist
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
PR_SIZE_LABELS_JSON: ${{ needs.prepare-config.outputs.labels_json }}
with:
Expand Down Expand Up @@ -128,11 +128,11 @@ jobs:
# git data. Do not add dependency installs, build/test scripts, or cache
# actions here; use pull_request plus workflow_run for that pattern instead.
- name: Checkout base repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Sync PR size label
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
PR_SIZE_LABELS_JSON: ${{ needs.prepare-config.outputs.labels_json }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-vouch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
targets: ${{ steps.collect.outputs.targets }}
steps:
- id: collect
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
if (context.eventName === "pull_request_target") {
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Sync PR labels
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
PR_NUMBER: ${{ matrix.target.number }}
VOUCH_STATUS: ${{ steps.vouch.outputs.status }}
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
has_changes: ${{ steps.check.outputs.has_changes }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
sparse-checkout: |
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
ref: ${{ github.sha }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
sparse-checkout: |
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
CLERK_CLI_OAUTH_CLIENT_ID: ${{ vars.CLERK_CLI_OAUTH_CLIENT_ID }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.preflight.outputs.ref }}
sparse-checkout: |
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.preflight.outputs.ref }}
sparse-checkout: |
Expand Down Expand Up @@ -373,7 +373,7 @@ jobs:
# arch: arm64
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.preflight.outputs.ref }}
sparse-checkout: |
Expand Down Expand Up @@ -416,7 +416,7 @@ jobs:

- name: Download WSL node-pty prebuild
if: matrix.platform == 'win'
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: wsl-node-pty-x64
path: wsl-prebuild
Expand Down Expand Up @@ -678,7 +678,7 @@ jobs:
T3CODE_RELAY_URL: ${{ needs.relay_public_config.outputs.relay_url }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.preflight.outputs.ref }}
sparse-checkout: |
Expand Down Expand Up @@ -750,14 +750,14 @@ jobs:
steps:
- id: app_token
name: Mint release app token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.RELEASE_APP_ID }}
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.preflight.outputs.ref }}
sparse-checkout: |
Expand Down Expand Up @@ -823,7 +823,7 @@ jobs:

- name: Publish release
if: needs.preflight.outputs.previous_tag != ''
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ needs.preflight.outputs.tag }}
target_commitish: ${{ needs.preflight.outputs.ref }}
Expand All @@ -844,7 +844,7 @@ jobs:

- name: Publish first release
if: needs.preflight.outputs.previous_tag == ''
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ needs.preflight.outputs.tag }}
target_commitish: ${{ needs.preflight.outputs.ref }}
Expand Down Expand Up @@ -882,7 +882,7 @@ jobs:
VERCEL_TEAM_SLUG: ${{ vars.VERCEL_TEAM_SLUG }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.preflight.outputs.ref }}
sparse-checkout: |
Expand Down Expand Up @@ -990,14 +990,14 @@ jobs:
steps:
- id: app_token
name: Mint release app token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.RELEASE_APP_ID }}
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: main
fetch-depth: 0
Expand Down Expand Up @@ -1074,7 +1074,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.preflight.outputs.ref }}
sparse-checkout: |
Expand Down
Loading