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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
run: npm run probe:ui
- name: Upload synthetic UI evidence
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: runtime-ui-evidence
path: ${{ runner.temp }}\runtime-ui-evidence
if-no-files-found: warn
- name: Upload installation evidence
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: runtime-installation-evidence
path: ${{ runner.temp }}\runtime-installation-evidence.json
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
./scripts/Acceptance-Portable.sh
- name: Upload portable lifecycle evidence
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: runtime-${{ matrix.platform }}-lifecycle-evidence
path: ${{ runner.temp }}/runtime-portable-evidence
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
$property = $evidence.checks.PSObject.Properties[$check]
if ($null -eq $property -or -not [bool]$property.Value) { throw "Installation evidence failed or omitted: $check" }
}
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: runtime-windows-candidate
path: candidate
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
npm run check
version="${GITHUB_REF_NAME#v}"
node scripts/Package-Portable-Release.mjs --version "$version" --output "$GITHUB_WORKSPACE/candidate"
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: runtime-portable-candidate
path: candidate
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
mv "$REW_PORTABLE_EVIDENCE_DIR/running.json" "$REW_PORTABLE_EVIDENCE_DIR/runtime-${{ matrix.platform }}-running.json"
mv "$REW_PORTABLE_EVIDENCE_DIR/absent.json" "$REW_PORTABLE_EVIDENCE_DIR/runtime-${{ matrix.platform }}-absent.json"
mv "$REW_PORTABLE_EVIDENCE_DIR/uninstall.txt" "$REW_PORTABLE_EVIDENCE_DIR/runtime-${{ matrix.platform }}-uninstall.txt"
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: runtime-${{ matrix.platform }}-archive-evidence
path: ${{ runner.temp }}/runtime-portable-evidence
Expand Down
Loading