Skip to content

Commit 706890f

Browse files
committed
Update actions/upload-artifact to v7 across workflows
1 parent 3e47f1f commit 706890f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 2 # Needed for push commit comparison
32-
- uses: dorny/paths-filter@v3
32+
- uses: dorny/paths-filter@v4
3333
id: filter
3434
with:
3535
filters: |
@@ -124,7 +124,7 @@ jobs:
124124
125125
- name: Upload Metrics Artifact
126126
if: github.event_name == 'push' || github.event_name == 'release'
127-
uses: actions/upload-artifact@v5
127+
uses: actions/upload-artifact@v7
128128
with:
129129
name: metrics-tinyusb
130130
path: metrics.json
@@ -179,7 +179,7 @@ jobs:
179179

180180
- name: Upload Metrics Comment Artifact
181181
if: github.event_name == 'pull_request'
182-
uses: actions/upload-artifact@v5
182+
uses: actions/upload-artifact@v7
183183
with:
184184
name: metrics-comment
185185
path: |

.github/workflows/build_util.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ jobs:
9090

9191
- name: Upload Artifacts for Metrics
9292
if: inputs.upload-metrics == true && inputs.code-changed == true
93-
uses: actions/upload-artifact@v5
93+
uses: actions/upload-artifact@v7
9494
with:
9595
name: metrics-${{ matrix.arg }}
9696
path: cmake-build/cmake-build-*/metrics.json
9797

9898
- name: Upload Artifacts for Hardware Testing
9999
if: inputs.upload-artifacts == true && inputs.code-changed == true
100-
uses: actions/upload-artifact@v5
100+
uses: actions/upload-artifact@v7
101101
with:
102102
name: binaries-${{ matrix.arg }}
103103
path: |

.github/workflows/cifuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fuzz-seconds: 400
3030

3131
- name: Upload Crash
32-
uses: actions/upload-artifact@v5
32+
uses: actions/upload-artifact@v7
3333
if: failure() && steps.build.outcome == 'success'
3434
with:
3535
name: artifacts

.github/workflows/static_analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
category: CodeQL
8585

8686
- name: Upload artifact
87-
uses: actions/upload-artifact@v5
87+
uses: actions/upload-artifact@v7
8888
with:
8989
name: codeql-${{ matrix.board }}
9090
path: ${{ steps.analyze.outputs.sarif-output }}
@@ -136,7 +136,7 @@ jobs:
136136
category: PVS-Studio
137137

138138
- name: Upload artifact
139-
uses: actions/upload-artifact@v5
139+
uses: actions/upload-artifact@v7
140140
with:
141141
name: pvs-studio-${{ matrix.board }}
142142
path: pvs-studio-${{ matrix.board }}.sarif
@@ -236,7 +236,7 @@ jobs:
236236
category: IAR-CStat
237237

238238
- name: Upload artifact
239-
uses: actions/upload-artifact@v5
239+
uses: actions/upload-artifact@v7
240240
with:
241241
name: iar-cstat-${{ matrix.board }}
242242
path: iar-cstat-${{ matrix.board }}.sarif

0 commit comments

Comments
 (0)