Skip to content

Commit b533b81

Browse files
Ayush1325DhruvaG2000
authored andcommitted
CI: Fix CI Fail
- Some action versions have been deprecated and thus should be updated. - I have also updated some which have not been deprecated to hopefully speed up the CI. Signed-off-by: Ayush Singh <[email protected]>
1 parent dc24cf0 commit b533b81

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
west build -p -b beagleconnect_freedom samples/analog_input
3939
4040
- name: Archive firmware
41-
uses: actions/upload-artifact@v2
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: firmware
4444
path: Arduino-Zephyr-API/build/zephyr/zephyr.*

.github/workflows/checkpatch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- name: 'Calculate PR commits + 1'
2323
run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> $GITHUB_ENV
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
with:
2626
ref: ${{ github.event.pull_request.head.sha }}
2727
fetch-depth: ${{ env.PR_FETCH_DEPTH }}

.github/workflows/license_check.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
88
name: Scan code for licenses
99
steps:
1010
- name: Checkout the code
11-
uses: actions/checkout@v1
11+
uses: actions/checkout@v4
1212
- name: Scan the code
1313
id: scancode
1414
uses: zephyrproject-rtos/action_scancode@v4
1515
with:
1616
directory-to-scan: 'scan/'
1717
- name: Artifact Upload
18-
uses: actions/upload-artifact@v1
18+
uses: actions/upload-artifact@v4
1919
with:
2020
name: scancode
2121
path: ./artifacts

0 commit comments

Comments
 (0)