Skip to content

Commit d18749a

Browse files
authored
Merge pull request #45 from telemetryflow/dependabot/github_actions/actions/upload-artifact-6
chore(ci)(deps): bump actions/upload-artifact from 4 to 6
2 parents 575f05c + 7515895 commit d18749a

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ jobs:
288288
fi
289289
290290
- name: Upload unit test coverage
291-
uses: actions/upload-artifact@v4
291+
uses: actions/upload-artifact@v6
292292
with:
293293
name: coverage-unit
294294
path: coverage/

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ jobs:
316316

317317
- name: Upload SBOM
318318
if: needs.prepare.outputs.push == 'true'
319-
uses: actions/upload-artifact@v4
319+
uses: actions/upload-artifact@v6
320320
with:
321321
name: sbom-${{ needs.prepare.outputs.commit }}
322322
path: sbom-*.spdx.json
@@ -442,7 +442,7 @@ jobs:
442442
fi
443443
444444
- name: Upload scan results as artifact
445-
uses: actions/upload-artifact@v4
445+
uses: actions/upload-artifact@v6
446446
if: always() && hashFiles('trivy-results.sarif') != ''
447447
with:
448448
name: trivy-scan-results-${{ needs.prepare.outputs.commit }}

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
mv build/telemetryflow-core build/telemetryflow-core-linux-${{ matrix.arch }}
129129
130130
- name: Upload artifact
131-
uses: actions/upload-artifact@v4
131+
uses: actions/upload-artifact@v6
132132
with:
133133
name: binary-linux-${{ matrix.arch }}
134134
path: build/telemetryflow-core-linux-${{ matrix.arch }}
@@ -167,7 +167,7 @@ jobs:
167167
mv build/telemetryflow-core.exe build/telemetryflow-core-windows-amd64.exe
168168
169169
- name: Upload artifact
170-
uses: actions/upload-artifact@v4
170+
uses: actions/upload-artifact@v6
171171
with:
172172
name: binary-windows-amd64
173173
path: build/telemetryflow-core-windows-amd64.exe
@@ -214,7 +214,7 @@ jobs:
214214
mv build/telemetryflow-core build/telemetryflow-core-darwin-${{ matrix.arch }}
215215
216216
- name: Upload artifact
217-
uses: actions/upload-artifact@v4
217+
uses: actions/upload-artifact@v6
218218
with:
219219
name: binary-darwin-${{ matrix.arch }}
220220
path: build/telemetryflow-core-darwin-${{ matrix.arch }}
@@ -369,7 +369,7 @@ jobs:
369369
-bb rpmbuild/SPECS/telemetryflow-core.spec
370370
371371
- name: Upload RPM artifact
372-
uses: actions/upload-artifact@v4
372+
uses: actions/upload-artifact@v6
373373
with:
374374
name: rpm-${{ matrix.arch }}
375375
path: rpmbuild/RPMS/**/*.rpm
@@ -532,7 +532,7 @@ jobs:
532532
mv ${PKG_DIR}.deb packages/
533533
534534
- name: Upload DEB artifact
535-
uses: actions/upload-artifact@v4
535+
uses: actions/upload-artifact@v6
536536
with:
537537
name: deb-${{ matrix.arch }}
538538
path: packages/*.deb
@@ -671,7 +671,7 @@ jobs:
671671
zip -r ${BINARY_NAME}-${VERSION}-windows-amd64.zip ${PKG_DIR}
672672
673673
- name: Upload Windows artifact
674-
uses: actions/upload-artifact@v4
674+
uses: actions/upload-artifact@v6
675675
with:
676676
name: windows-amd64
677677
path: telemetryflow-core-*.zip
@@ -867,7 +867,7 @@ jobs:
867867
"${DMG_NAME}"
868868
869869
- name: Upload DMG artifact
870-
uses: actions/upload-artifact@v4
870+
uses: actions/upload-artifact@v6
871871
with:
872872
name: dmg-${{ matrix.arch }}
873873
path: telemetryflow-core-*.dmg
@@ -919,7 +919,7 @@ jobs:
919919
tar -czvf "${TAR_DIR}.tar.gz" "${TAR_DIR}"
920920
921921
- name: Upload tarball artifact
922-
uses: actions/upload-artifact@v4
922+
uses: actions/upload-artifact@v6
923923
with:
924924
name: tarball-${{ matrix.os }}-${{ matrix.arch }}
925925
path: telemetryflow-core-*.tar.gz
@@ -1156,7 +1156,7 @@ jobs:
11561156
zip -r "${ARCHIVE_NAME}.zip" "${ARCHIVE_NAME}"
11571157
11581158
- name: Upload source artifacts
1159-
uses: actions/upload-artifact@v4
1159+
uses: actions/upload-artifact@v6
11601160
with:
11611161
name: source-archives
11621162
path: |

0 commit comments

Comments
 (0)