Skip to content

Commit ce87a40

Browse files
committed
Update the CI actions to their current majors
checkout v4 to v7, setup-python v5 to v7, cache v4 to v6, upload-artifact v4 to v7. All four majors are ESM and Node 24 runtime migrations; none of the inputs used here changed. upload-artifact v6 onwards needs a runner of at least 2.327.1, which the GitHub hosted runners satisfy.
1 parent f8dbadf commit ce87a40

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
matrix:
1818
env: [native, native-meshtastic-modes]
1919
steps:
20-
- uses: actions/checkout@v4
21-
- uses: actions/setup-python@v5
20+
- uses: actions/checkout@v7
21+
- uses: actions/setup-python@v7
2222
with:
2323
python-version: "3.x"
2424
- name: Cache PlatformIO
25-
uses: actions/cache@v4
25+
uses: actions/cache@v6
2626
with:
2727
path: ~/.platformio
2828
key: pio-${{ runner.os }}-${{ hashFiles('**/platformio.ini') }}
@@ -49,12 +49,12 @@ jobs:
4949
dir: tools/nrf52_codebook_flash
5050
env: t-echo-card
5151
steps:
52-
- uses: actions/checkout@v4
53-
- uses: actions/setup-python@v5
52+
- uses: actions/checkout@v7
53+
- uses: actions/setup-python@v7
5454
with:
5555
python-version: "3.x"
5656
- name: Cache PlatformIO
57-
uses: actions/cache@v4
57+
uses: actions/cache@v6
5858
with:
5959
path: ~/.platformio
6060
key: pio-${{ runner.os }}-${{ matrix.env }}-${{ hashFiles('**/platformio.ini') }}
@@ -70,7 +70,7 @@ jobs:
7070
run: pio run -e ${{ matrix.env }}
7171
working-directory: ${{ matrix.dir }}
7272

73-
- uses: actions/upload-artifact@v4
73+
- uses: actions/upload-artifact@v7
7474
with:
7575
name: ${{ matrix.name }}
7676
if-no-files-found: error

0 commit comments

Comments
 (0)