Skip to content

Commit e74226f

Browse files
authored
[ci] Update actions to node 20 versions (#43)
1 parent 618db67 commit e74226f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/firmware.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Set FIRMWARE_VERSION variable
1515
run: |
1616
FIRMWARE_VER=$(cat VERSION)
1717
echo "FIRMWARE_VERSION=$FIRMWARE_VER" >> $GITHUB_ENV
1818
- name: Set FIRMWARE_COMMIT_HASH variable
1919
run: echo "FIRMWARE_COMMIT_SHA=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV"
2020
- name: Set up Python
21-
uses: actions/setup-python@v3
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: 3.8
2424
- name: Install dependencies
@@ -29,7 +29,7 @@ jobs:
2929
run: pio run
3030
- name: Rename firmware
3131
run: mv .pio/build/rpipicow/firmware.uf2 .pio/build/rpipicow/xrp-wpilib-firmware-${{ env.FIRMWARE_VERSION }}-${{ env.FIRMWARE_COMMIT_SHA }}.uf2
32-
- uses: actions/upload-artifact@v3
32+
- uses: actions/upload-artifact@v4
3333
with:
3434
name: xrp-wpilib-firmware-${{ env.FIRMWARE_VERSION }}-${{ env.FIRMWARE_COMMIT_SHA }}
3535
path: .pio/build/rpipicow/xrp-wpilib-firmware-*.uf2

0 commit comments

Comments
 (0)