Skip to content

Commit 2bcbe4c

Browse files
authored
Update browser build action dependencies to meet GH node version requirements (#120)
1 parent ed8d7a0 commit 2bcbe4c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/add_identifiers.yml

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

2121
# Checks-out the repo
2222
- name: Checkout Repo
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
# Patch Fastlane Match to not print tables
2626
- name: Patch Match Tables

.github/workflows/build_loop.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
if: |
9898
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
9999
(vars.SCHEDULED_BUILD != 'false' || vars.SCHEDULED_SYNC != 'false')
100-
uses: actions/checkout@v3
100+
uses: actions/checkout@v4
101101
with:
102102
token: ${{ secrets.GH_PAT }}
103103
ref: alive
@@ -107,7 +107,7 @@ jobs:
107107
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
108108
vars.SCHEDULED_SYNC != 'false' && github.repository_owner != 'LoopKit'
109109
id: sync
110-
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
110+
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4.1
111111
with:
112112
target_sync_branch: ${{ env.ALIVE_BRANCH }}
113113
shallow_since: 6 months ago
@@ -173,7 +173,7 @@ jobs:
173173
if: |
174174
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
175175
vars.SCHEDULED_SYNC != 'false'
176-
uses: actions/checkout@v3
176+
uses: actions/checkout@v4
177177
with:
178178
token: ${{ secrets.GH_PAT }}
179179
ref: ${{ env.TARGET_BRANCH }}
@@ -183,7 +183,7 @@ jobs:
183183
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
184184
vars.SCHEDULED_SYNC != 'false' && github.repository_owner != 'LoopKit'
185185
id: sync
186-
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
186+
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4.1
187187
with:
188188
target_sync_branch: ${{ env.TARGET_BRANCH }}
189189
shallow_since: 6 months ago
@@ -213,7 +213,7 @@ jobs:
213213
echo "NEW_COMMITS=${{ steps.sync.outputs.has_new_commits }}" >> $GITHUB_OUTPUT
214214
215215
- name: Checkout Repo for building
216-
uses: actions/checkout@v3
216+
uses: actions/checkout@v4
217217
with:
218218
token: ${{ secrets.GH_PAT }}
219219
submodules: recursive
@@ -284,7 +284,7 @@ jobs:
284284
# Upload Build artifacts
285285
- name: Upload build log, IPA and Symbol artifacts
286286
if: always()
287-
uses: actions/upload-artifact@v3
287+
uses: actions/upload-artifact@v4
288288
with:
289289
name: build-artifacts
290290
path: |

.github/workflows/create_certs.yml

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

2121
# Checks-out the repo
2222
- name: Checkout Repo
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
# Patch Fastlane Match to not print tables
2626
- name: Patch Match Tables

.github/workflows/validate_secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
TEAMID: ${{ secrets.TEAMID }}
124124
steps:
125125
- name: Checkout Repo
126-
uses: actions/checkout@v3
126+
uses: actions/checkout@v4
127127

128128
- name: Install Project Dependencies
129129
run: bundle install

0 commit comments

Comments
 (0)