Skip to content

Commit aae20bd

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6c3f17d commit aae20bd

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/push-master-pico.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
cmake --build . --config Release
3333
zip -j ../HyperSerialPico/firmware/hyperspi_pico_rp2040.zip ../HyperSerialPico/firmware/*.uf2
3434
35-
- uses: actions/upload-artifact@v4
35+
- uses: actions/upload-artifact@v5
3636
name: Upload artifacts (commit)
3737
if: (startsWith(github.event.ref, 'refs/tags') != true)
3838
with:
3939
name: commit-artifact-pico
4040
path: |
4141
rp2040/HyperSerialPico/firmware/*.zip
4242
43-
- uses: actions/upload-artifact@v4
43+
- uses: actions/upload-artifact@v5
4444
name: Upload artifacts (release)
4545
if: startsWith(github.ref, 'refs/tags/')
4646
with:
@@ -63,15 +63,15 @@ jobs:
6363
cmake --build .
6464
zip -j ../HyperSerialPico/firmware/Adafruit_Feather_RP2040_Scorpio.zip ../HyperSerialPico/firmware/*
6565
66-
- uses: actions/upload-artifact@v4
66+
- uses: actions/upload-artifact@v5
6767
name: Upload artifacts (Adafruit_Feather)
6868
if: (startsWith(github.event.ref, 'refs/tags') != true)
6969
with:
7070
name: commit-artifact-Adafruit_Feather
7171
path: |
7272
rp2040/HyperSerialPico/firmware/*.zip
7373
74-
- uses: actions/upload-artifact@v4
74+
- uses: actions/upload-artifact@v5
7575
name: Upload artifacts (release for Adafruit_Feather)
7676
if: startsWith(github.ref, 'refs/tags/')
7777
with:
@@ -94,15 +94,15 @@ jobs:
9494
cmake --build .
9595
zip -j ../HyperSerialPico/firmware/Adafruit_ItsyBitsy_RP2040.zip ../HyperSerialPico/firmware/*
9696
97-
- uses: actions/upload-artifact@v4
97+
- uses: actions/upload-artifact@v5
9898
name: Upload artifacts (Adafruit_ItsyBitsy)
9999
if: (startsWith(github.event.ref, 'refs/tags') != true)
100100
with:
101101
name: commit-artifact-Adafruit_ItsyBitsy
102102
path: |
103103
rp2040/HyperSerialPico/firmware/*.zip
104104
105-
- uses: actions/upload-artifact@v4
105+
- uses: actions/upload-artifact@v5
106106
name: Upload artifacts (release for Adafruit_ItsyBitsy)
107107
if: startsWith(github.ref, 'refs/tags/')
108108
with:

.github/workflows/push-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
zip -j .pio/build/recovery_firmware.zip .pio/build/*.factory.bin
3939
rm -f .pio/build/*.factory.bin
4040
41-
- uses: actions/upload-artifact@v4
41+
- uses: actions/upload-artifact@v5
4242
name: Upload artifacts (commit)
4343
if: (startsWith(github.event.ref, 'refs/tags') != true)
4444
with:
@@ -47,7 +47,7 @@ jobs:
4747
.pio/build/*.bin
4848
.pio/build/recovery_firmware.zip
4949
50-
- uses: actions/upload-artifact@v4
50+
- uses: actions/upload-artifact@v5
5151
name: Upload artifacts (release)
5252
if: startsWith(github.ref, 'refs/tags/')
5353
with:

0 commit comments

Comments
 (0)