Skip to content

Commit 95e5959

Browse files
committed
ci: bump actions/checkout and actions/upload-artifact to v5
The v4 releases of both actions run on Node.js 20, which GitHub Actions will force to Node.js 24 on 2026-06-02 and remove entirely on 2026-09-16. v5 of both actions natively targets Node.js 24, so moving now avoids future deprecation warnings and the forced runtime swap.
1 parent 1988b18 commit 95e5959

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Host unit tests
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Build and run tests
1616
working-directory: tests
1717
run: |
@@ -35,7 +35,7 @@ jobs:
3535
ASAN_OPTIONS: detect_leaks=1:halt_on_error=1:abort_on_error=1
3636
UBSAN_OPTIONS: halt_on_error=1:abort_on_error=1:print_stacktrace=1
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: Build with sanitizers and run
4040
working-directory: tests
4141
run: |
@@ -58,7 +58,7 @@ jobs:
5858
name: Static analysis (cppcheck)
5959
runs-on: ubuntu-latest
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
6262
- name: Install cppcheck
6363
run: sudo apt-get update && sudo apt-get install -y cppcheck
6464
- name: Run cppcheck on application sources
@@ -76,7 +76,7 @@ jobs:
7676
name: Firmware cross-compile (arm-none-eabi-gcc)
7777
runs-on: ubuntu-latest
7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v5
8080
- name: Install ARM GCC toolchain
8181
run: sudo apt-get update && sudo apt-get install -y gcc-arm-none-eabi
8282
- name: Build bcm_master
@@ -90,7 +90,7 @@ jobs:
9090
arm-none-eabi-size bcm_master/build/bcm_master.elf
9191
arm-none-eabi-size lighting_node/build/lighting_node.elf
9292
- name: Upload firmware artifacts
93-
uses: actions/upload-artifact@v4
93+
uses: actions/upload-artifact@v5
9494
with:
9595
name: firmware-images
9696
path: |

0 commit comments

Comments
 (0)