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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Generate CycloneDX SBOM from locked requirements
run: |
uv run cyclonedx-py requirements requirements.txt --of json -o sbom.cdx.json
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: sbom
path: sbom.cdx.json
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
run: twine check dist/*

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
run: bandit -r cli/ -f json -o bandit-report.json || true

- name: Upload security report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: security-report
path: bandit-report.json
2 changes: 1 addition & 1 deletion .github/workflows/understand-first-commenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
"

- name: Upload analysis artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: understand-first-pr-analysis-${{ github.event.number || github.event.inputs.pr_number }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/understand-first-pr-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
echo "Policy check exit code: $POLICY_EXIT_CODE"

- name: Upload analysis artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: understand-first-analysis
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/understand-first.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
git stash pop

- name: Upload Analysis Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: understand-first-analysis
path: |
Expand All @@ -178,23 +178,23 @@ jobs:

- name: Upload Code Map Delta
if: steps.diff.outputs.changes_detected == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: code-map-delta
path: maps/delta.svg
retention-days: 30

- name: Upload Understanding Tour
if: steps.lens.outputs.lens_created == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: understanding-tour
path: tours/pr-tour.md
retention-days: 30

- name: Upload Context Debt Dashboard
if: steps.lens.outputs.lens_created == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: context-debt-dashboard
path: context-debt-dashboard.html
Expand Down
Loading