Skip to content

Commit 0a25eb5

Browse files
committed
1 parent 74bcde3 commit 0a25eb5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
path: ${{ runner.tool_cache }}/gcc-arm-9-2020-q2
183183
key: gcc-arm-9-2020-q2
184184
- name: Add cross-compiler to path
185-
run: echo ::add-path::${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin
185+
run: echo ${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin >> $GITHUB_PATH
186186
- name: Checkout repo
187187
uses: actions/checkout@v2
188188
with:
@@ -226,7 +226,7 @@ jobs:
226226
path: ${{ runner.tool_cache }}/gcc-arm-9-2020-q2
227227
key: gcc-arm-9-2020-q2
228228
- name: Add cross-compiler to path
229-
run: echo ::add-path::${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin
229+
run: echo ${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin >> $GITHUB_PATH
230230
- name: Checkout repo
231231
uses: actions/checkout@v2
232232
with:
@@ -270,7 +270,7 @@ jobs:
270270
path: ${{ runner.tool_cache }}/gcc-arm-9-2020-q2
271271
key: gcc-arm-9-2020-q2
272272
- name: Add cross-compiler to path
273-
run: echo ::add-path::${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin
273+
run: echo ${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin >> $GITHUB_PATH
274274
- name: Checkout repo
275275
uses: actions/checkout@v2
276276
with:
@@ -314,7 +314,7 @@ jobs:
314314
path: ${{ runner.tool_cache }}/gcc-arm-9-2020-q2
315315
key: gcc-arm-9-2020-q2
316316
- name: Add cross-compiler to path
317-
run: echo ::add-path::${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin
317+
run: echo ${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin >> $GITHUB_PATH
318318
- name: Checkout repo
319319
uses: actions/checkout@v2
320320
with:
@@ -358,7 +358,7 @@ jobs:
358358
path: ${{ runner.tool_cache }}/gcc-arm-9-2020-q2
359359
key: gcc-arm-9-2020-q2
360360
- name: Add cross-compiler to path
361-
run: echo ::add-path::${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin
361+
run: echo ${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin >> $GITHUB_PATH
362362
- name: Checkout repo
363363
uses: actions/checkout@v2
364364
with:
@@ -390,7 +390,7 @@ jobs:
390390
path: ${{ runner.tool_cache }}/gcc-arm-9-2020-q2
391391
key: gcc-arm-9-2020-q2
392392
- name: Add cross-compiler to path
393-
run: echo ::add-path::${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin
393+
run: echo ${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin >> $GITHUB_PATH
394394
- name: Checkout repo
395395
uses: actions/checkout@v2
396396
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
release: '9-2020-q2'
2727
directory: ${{ runner.tool_cache }}/gcc-arm-9-2020-q2
2828
- name: Add cross-compiler to path
29-
run: echo ::add-path::${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin
29+
run: echo ${{ runner.tool_cache }}/gcc-arm-9-2020-q2/bin >> $GITHUB_PATH
3030
- name: Checkout code
3131
uses: actions/checkout@v2
3232
with:

0 commit comments

Comments
 (0)