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/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
CI: "true"

- name: Archive results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: benchmark-results-${{ github.run_id }}
path: .github/benchmarks/results/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/credential-rotation-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:

- name: Upload PCI artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: rotation-pci-${{ github.run_id }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deep-qa-block.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
EOF

- name: Upload report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: "deep-qa-block-${{ inputs.block }}"
path: "deep-qa-block-${{ inputs.block }}.md"
2 changes: 1 addition & 1 deletion .github/workflows/e2e-golden-path.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:

- name: Upload JSON report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: golden-path-report-${{ github.run_id }}
path: /tmp/golden-path-report.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/embedded-pg-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
| tee bench-results-${{ matrix.os }}.txt

- name: Upload benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: bench-results-${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-list-updates-monthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
cat report.md

- name: Upload report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: go-updates-${{ github.run_id }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/govulncheck-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Upload scan artifact
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: govuln-${{ github.run_id }}
path: govuln.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ jobs:
| tee bench-output.txt

- name: Upload benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: cli-bench-output
path: bench-output.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quarterly-doc-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
.claude/qa/findings/*.json

- name: Upload JSON report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: doc-audit-${{ steps.quarter.outputs.label }}
path: .claude/qa/findings/${{ steps.quarter.outputs.label }}-doc-audit.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
echo "hashes=$HASHES" >> "$GITHUB_OUTPUT"

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-binaries
path: |
Expand All @@ -118,7 +118,7 @@ jobs:
retention-days: 1

- name: Upload checksums
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-checksums
path: dist/checksums.txt
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
done

- name: Upload SBOMs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-sboms
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:

# ── Upload as workflow artifact (not a release asset) ────────────────
- name: Upload SBOMs as workflow artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sbom-dryrun-${{ github.sha }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:

- name: Upload artifact
if: ${{ inputs.arch == 'both' || inputs.arch == matrix.goarch }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: nself-windows-${{ matrix.goarch }}-smoke
path: dist/nself.exe
Expand Down
Loading