Skip to content

Commit a8e29d0

Browse files
committed
chore: add note
1 parent 3f0e22e commit a8e29d0

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

.github/workflows/nut.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,11 @@ jobs:
9191
- uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main
9292
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}
9393

94-
- name: Install newest wireit
95-
run: yarn add wireit@latest
94+
# This is a temporary workaround to ensure wireit is >= 0.14.12
95+
# Once all plugins/libs that use this workflow are updated, this can be removed
96+
# See: https://github.com/google/wireit/issues/1297#issuecomment-2794737569
97+
- name: Install wireit
98+
run: yarn add wireit@^0.14.12
9699

97100
- run: yarn compile
98101

.github/workflows/unitTestsLinux.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,11 @@ jobs:
5353
- uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main
5454
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}
5555

56-
- name: Install newest wireit
57-
run: yarn add wireit@latest
56+
# This is a temporary workaround to ensure wireit is >= 0.14.12
57+
# Once all plugins/libraries that use this workflow are updated, this can be removed
58+
# See: https://github.com/google/wireit/issues/1297#issuecomment-2794737569
59+
- name: Install wireit
60+
run: yarn add wireit@^0.14.12
5861

5962
- run: yarn build
6063

.github/workflows/unitTestsWindows.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,11 @@ jobs:
4545
- uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main
4646
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}
4747

48-
- name: Install newest wireit
49-
run: yarn add wireit@latest
48+
# This is a temporary workaround to ensure wireit is >= 0.14.12
49+
# Once all plugins/libraries that use this workflow are updated, this can be removed
50+
# See: https://github.com/google/wireit/issues/1297#issuecomment-2794737569
51+
- name: Install wireit
52+
run: yarn add wireit@^0.14.12
5053

5154
- run: yarn build
5255

0 commit comments

Comments
 (0)