Skip to content

Commit bafb750

Browse files
committed
update to use Node.js 24 for github actions
1 parent 152c71d commit bafb750

4 files changed

Lines changed: 8 additions & 8 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/build_loop.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 != 'LoopKit'
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
@@ -255,7 +255,7 @@ jobs:
255255
# Upload Build artifacts
256256
- name: Upload build log, IPA and Symbol artifacts
257257
if: always()
258-
uses: actions/upload-artifact@v4
258+
uses: actions/upload-artifact@v6
259259
with:
260260
name: build-artifacts
261261
path: |

.github/workflows/create_certs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
# Checks-out the repo
3131
- name: Checkout Repo
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333

3434
# Patch Fastlane Match to not print tables
3535
- name: Patch Match Tables
@@ -97,7 +97,7 @@ jobs:
9797
run: echo "new_certificate_needed=${{ needs.create_certs.outputs.new_certificate_needed }}"
9898

9999
- name: Checkout repository
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101

102102
- name: Install dependencies
103103
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
- name: Install Project Dependencies
122122
run: bundle install

0 commit comments

Comments
 (0)