Skip to content

Commit 469996e

Browse files
authored
update actions to use node js 24 (#538)
1 parent 047be8f commit 469996e

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/add_identifiers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
# Checks-out the repo
1818
- name: Checkout Repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
# Patch Fastlane Match to not print tables
2222
- name: Patch Match Tables

.github/workflows/auto_version_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444
with:
4545
token: ${{ secrets.LOOPFOLLOW_TOKEN_AUTOBUMP }}
4646

.github/workflows/build_LoopFollow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
if: |
9191
steps.workflow-permission.outputs.has_permission == 'true' &&
9292
(vars.SCHEDULED_BUILD != 'false' || vars.SCHEDULED_SYNC != 'false')
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v5
9494
with:
9595
token: ${{ secrets.GH_PAT }}
9696

@@ -100,7 +100,7 @@ jobs:
100100
steps.workflow-permission.outputs.has_permission == 'true' &&
101101
vars.SCHEDULED_SYNC != 'false' && github.repository_owner != 'loopandlearn'
102102
id: sync
103-
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4.1
103+
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4.2
104104
with:
105105
target_sync_branch: ${{ env.TARGET_BRANCH }}
106106
shallow_since: 6 months ago
@@ -178,7 +178,7 @@ jobs:
178178
run: "sudo xcode-select --switch /Applications/Xcode_26.2.app/Contents/Developer"
179179

180180
- name: Checkout Repo for building
181-
uses: actions/checkout@v4
181+
uses: actions/checkout@v5
182182
with:
183183
token: ${{ secrets.GH_PAT }}
184184
submodules: recursive
@@ -228,7 +228,7 @@ jobs:
228228
# Upload Build artifacts
229229
- name: Upload build log, IPA and Symbol artifacts
230230
if: always()
231-
uses: actions/upload-artifact@v4
231+
uses: actions/upload-artifact@v6
232232
with:
233233
name: build-artifacts
234234
path: |

.github/workflows/create_certs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
# Checks-out the repo
3030
- name: Checkout Repo
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232

3333
# Patch Fastlane Match not print tables
3434
- name: Patch Match Tables
@@ -99,7 +99,7 @@ jobs:
9999
run: echo "new_certificate_needed=${{ needs.create_certs.outputs.new_certificate_needed }}"
100100

101101
- name: Checkout repository
102-
uses: actions/checkout@v4
102+
uses: actions/checkout@v5
103103

104104
- name: Install dependencies
105105
run: bundle install

.github/workflows/validate_secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
TEAMID: ${{ secrets.TEAMID }}
117117
steps:
118118
- name: Checkout Repo
119-
uses: actions/checkout@v4
119+
uses: actions/checkout@v5
120120

121121
# Sync the GitHub runner clock with the Windows time server (workaround as suggested in https://github.com/actions/runner/issues/2996)
122122
- name: Sync clock

0 commit comments

Comments
 (0)