Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:
fi

- name: Upload unit test coverage
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-unit
path: coverage/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ jobs:

- name: Upload SBOM
if: needs.prepare.outputs.push == 'true'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sbom-${{ needs.prepare.outputs.commit }}
path: sbom-*.spdx.json
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
fi

- name: Upload scan results as artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always() && hashFiles('trivy-results.sarif') != ''
with:
name: trivy-scan-results-${{ needs.prepare.outputs.commit }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
mv build/telemetryflow-core build/telemetryflow-core-linux-${{ matrix.arch }}

- name: Upload artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: binary-linux-${{ matrix.arch }}
path: build/telemetryflow-core-linux-${{ matrix.arch }}
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
mv build/telemetryflow-core.exe build/telemetryflow-core-windows-amd64.exe

- name: Upload artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: binary-windows-amd64
path: build/telemetryflow-core-windows-amd64.exe
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
mv build/telemetryflow-core build/telemetryflow-core-darwin-${{ matrix.arch }}

- name: Upload artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: binary-darwin-${{ matrix.arch }}
path: build/telemetryflow-core-darwin-${{ matrix.arch }}
Expand Down Expand Up @@ -369,7 +369,7 @@ jobs:
-bb rpmbuild/SPECS/telemetryflow-core.spec

- name: Upload RPM artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: rpm-${{ matrix.arch }}
path: rpmbuild/RPMS/**/*.rpm
Expand Down Expand Up @@ -532,7 +532,7 @@ jobs:
mv ${PKG_DIR}.deb packages/

- name: Upload DEB artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: deb-${{ matrix.arch }}
path: packages/*.deb
Expand Down Expand Up @@ -671,7 +671,7 @@ jobs:
zip -r ${BINARY_NAME}-${VERSION}-windows-amd64.zip ${PKG_DIR}

- name: Upload Windows artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: windows-amd64
path: telemetryflow-core-*.zip
Expand Down Expand Up @@ -867,7 +867,7 @@ jobs:
"${DMG_NAME}"

- name: Upload DMG artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dmg-${{ matrix.arch }}
path: telemetryflow-core-*.dmg
Expand Down Expand Up @@ -919,7 +919,7 @@ jobs:
tar -czvf "${TAR_DIR}.tar.gz" "${TAR_DIR}"

- name: Upload tarball artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: tarball-${{ matrix.os }}-${{ matrix.arch }}
path: telemetryflow-core-*.tar.gz
Expand Down Expand Up @@ -1156,7 +1156,7 @@ jobs:
zip -r "${ARCHIVE_NAME}.zip" "${ARCHIVE_NAME}"

- name: Upload source artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: source-archives
path: |
Expand Down