Skip to content

Commit 302bc33

Browse files
authored
Merge pull request #5423 from letscontrolit/dependabot/github_actions/actions/upload-artifact-5
Bump actions/upload-artifact from 4 to 5
2 parents 5af34c2 + c33f19e commit 302bc33

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
make html
3838
cd ..
3939
zip -r -qq ESPEasy_docs.zip docs/build/*
40-
- uses: actions/upload-artifact@v4
40+
- uses: actions/upload-artifact@v5
4141
with:
4242
name: Documentation
4343
path: ESPEasy_docs.zip
@@ -88,7 +88,7 @@ jobs:
8888
uses: Entepotenz/change-string-case-action-min-dependencies@v1
8989
with:
9090
string: ${{ matrix.chip }}
91-
- uses: actions/upload-artifact@v4
91+
- uses: actions/upload-artifact@v5
9292
with:
9393
# FIXME Workaround to (temporarily) not use # in the artifact name, see https://github.com/actions/upload-artifact/issues/473
9494
name: Bin-${{ steps.string.outputs.uppercase }}-${{ matrix.env }}-${{ steps.date.outputs.builddate }}_PR_${{ github.event.number }}_${{ github.run_id }} # Sort by ESP type
@@ -119,7 +119,7 @@ jobs:
119119
run: |
120120
cd artifacts/Binaries/
121121
ls -R
122-
- uses: actions/upload-artifact@v4
122+
- uses: actions/upload-artifact@v5
123123
with:
124124
# FIXME Workaround to (temporarily) not use # in the artifact name, see https://github.com/actions/upload-artifact/issues/473
125125
name: ESPEasy-all-Binaries-${{ steps.date.outputs.builddate }}_PR_${{ github.event.number }}_${{ github.run_id }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
uses: Entepotenz/change-string-case-action-min-dependencies@v1
5757
with:
5858
string: ${{ matrix.chip }}
59-
- uses: actions/upload-artifact@v4
59+
- uses: actions/upload-artifact@v5
6060
with:
6161
name: Bin-${{ steps.string.outputs.uppercase }}-${{ matrix.env }}
6262
path: |
@@ -83,7 +83,7 @@ jobs:
8383
cd dist
8484
zip -r -qq ../ESPEasy_dist.zip *
8585
cd ..
86-
- uses: actions/upload-artifact@v4
86+
- uses: actions/upload-artifact@v5
8787
with:
8888
name: Distribution
8989
path: |

0 commit comments

Comments
 (0)