Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,8 @@ venv/
.hypothesis/
**/out/*
.copilot-tracking/
dependency-pinning-artifacts/
dependency-pinning-artifacts/*
!dependency-pinning-artifacts/README.md

.DS_Store
.beads/
Expand Down
28 changes: 28 additions & 0 deletions dependency-pinning-artifacts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: Dependency Pinning Artifacts
description: Local staging directory for dependency pinning compliance artifacts produced in CI.
author: Edge AI Team
ms.topic: reference
---

This directory is the local staging location for the dependency pinning
compliance report produced by
[`scripts/security/Test-DependencyPinning.ps1`](../scripts/security/Test-DependencyPinning.ps1)
when it runs on the `github` platform.

The script creates this directory at runtime and copies the generated
`dependency-pinning-report.*` file into it so that the GitHub Actions
`upload-artifact` step in
[`.github/workflows/dependency-pinning-scan.yml`](../.github/workflows/dependency-pinning-scan.yml)
has a stable, known path to pick up the report from.

## Contents

The directory is otherwise empty in source control — this `README.md` is the
only tracked file. Runtime artifacts (the report copies) are ignored via the
repository's top-level [`.gitignore`](../.gitignore), so nothing generated by a
CI run ends up being committed.

If you are looking for the report itself, run the dependency pinning scan
locally and inspect the file the script writes into this directory, or download
the `dependency-pinning-report` artifact from the GitHub Actions run summary.
Loading