Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Run Windows schema
run: agent_windows_amd64_v1/paretosecurity schema > windows.json
- name: Upload Windows schema
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
path: windows.json
name: windows.json
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
$bitmap.Save("installer_screenshot.png")
shell: pwsh
- name: Upload Screenshot
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: installer-screenshot
path: installer_screenshot.png
Expand All @@ -96,7 +96,7 @@ jobs:
$bitmap.Save("tray_screenshot.png")
shell: pwsh
- name: Upload Screenshot
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: tray-screenshot
path: tray_screenshot.png
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
args: release --skip=publish --clean --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
name: Upload build
with:
name: build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
name: Upload release
with:
name: release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.pre.node20
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4.pre.node20
with:
name: SARIF file
path: results.sarif
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: devenv test -d
- name: Archive code coverage results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: code-coverage
path: coverage.txt # Make sure to use the same file name you chose for the "-coverprofile" in the "Test" step
Expand Down